ref: df119e69d767fa575696f1c6172ca9bf60fc2cdb
parent: 22f994eee7b62f986058e800b68ef44d244baacd
author: Gabriel Ravier <gabravier@gmail.com>
date: Mon May 13 10:19:58 EDT 2019
Removed redundant semi-colons
--- a/src/Flags.cpp
+++ b/src/Flags.cpp
@@ -7,8 +7,8 @@
unsigned char gFlagNPC[1000];
unsigned char gSkipFlag[8];
-#define SET_BIT(x, i) ((x)[(i) / 8] |= 1 << (i) % 8;)
-#define UNSET_BIT(x, i) ((x)[(i) / 8] &= ~(1 << (i) % 8);)
+#define SET_BIT(x, i) ((x)[(i) / 8] |= 1 << (i) % 8)
+#define UNSET_BIT(x, i) ((x)[(i) / 8] &= ~(1 << (i) % 8))
#define GET_BIT(x, i) ((x)[(i) / 8] & (1 << (i) % 8))
//Flag inits