Skip to content

Commit c6d145c

Browse files
committed
Fix version again, I hope this time I got it right
1 parent 093ef6d commit c6d145c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Assets/Scripts/Editor/BuildScript.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,20 @@ public static class BuildScript
3434
private static bool LogVerboseBatchMode = true;
3535
private static bool LogVerboseInEditor = false;
3636
private static readonly string CodeOptimizationSpeed =
37-
#if UNITY_2022_1_OR_NEWER
37+
#if UNITY_2022_3_OR_NEWER
3838
CodeOptimizationWebGL.RuntimeSpeedLTO.ToString();
3939
#else
4040
"speed";
4141
#endif
4242
private static readonly string CodeOptimizationSize =
43-
#if UNITY_2022_1_OR_NEWER
43+
#if UNITY_2022_3_OR_NEWER
4444
CodeOptimizationWebGL.DiskSizeLTO.ToString();
4545
#else
4646
"size";
4747
#endif
4848

4949
private static readonly string CodeOptimizationBuildTimes =
50-
#if UNITY_2022_1_OR_NEWER
50+
#if UNITY_2022_3_OR_NEWER
5151
CodeOptimizationWebGL.BuildTimes.ToString();
5252
#else
5353
"size";

0 commit comments

Comments
 (0)