diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp index e6ad0fac..bbec5eae 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -1851,7 +1851,7 @@ void do_parse() // Unequip any existing equipped item in this position int mask = 1; int position = 0; - while (!equipPoint & mask) { + while (!(equipPoint & mask)) { mask <<= 1; position++; } @@ -1902,7 +1902,7 @@ void do_parse() int mask = 1; int position = 0; - while (!equipPoint & mask) { + while (!(equipPoint & mask)) { mask <<= 1; position++; } |