Skip to content

Commit 95bbc2c

Browse files
committed
Fixes 'All' flag to be the next increment.
1 parent 519d1a9 commit 95bbc2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UnitySetup/UnitySetup.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ enum UnitySetupComponent {
1919
Vuforia = (1 -shl 12)
2020
WebGL = (1 -shl 13)
2121
Windows = (1 -shl 14)
22-
All = (1 -shl 14) - 1
22+
All = (1 -shl 15) - 1
2323
}
2424

2525
class UnitySetupInstaller {
@@ -884,4 +884,4 @@ function Start-UnityEditor {
884884
else {
885885
Write-Warning "Alias $($_.Name) already configured by $($alias.Source)"
886886
}
887-
}
887+
}

0 commit comments

Comments
 (0)