Reordered modifiers enum

This commit is contained in:
arookas 2016-02-22 21:05:14 -05:00
parent b7ec1a0273
commit 5575681124

View file

@ -345,7 +345,7 @@ namespace arookas {
[Flags]
enum sunSymbolModifiers {
None = 0,
Constant = 1 << 0,
Local = 1 << 1,
Local = 1 << 0,
Constant = 1 << 1,
}
}