Skip to content
This repository was archived by the owner on Nov 30, 2020. It is now read-only.

Commit dbec1bc

Browse files
committed
Fixed bad return in loop
1 parent fbc2a87 commit dbec1bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PostProcessing/Editor/Tools/DefineSetter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ static DefineSetter()
2323
.ToList();
2424

2525
if (list.Contains(k_Define))
26-
return;
26+
continue;
2727

2828
list.Add(k_Define);
2929
defines = list.Aggregate((a, b) => a + ";" + b);

0 commit comments

Comments
 (0)