Removed redundant semi-colons
This commit is contained in:
parent
22f994eee7
commit
df119e69d7
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue