Removed redundant semi-colons

This commit is contained in:
Gabriel Ravier 2019-05-13 14:19:58 +02:00
parent 22f994eee7
commit df119e69d7
No known key found for this signature in database
GPG key ID: 1E75F156884F3DCE

View file

@ -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