mirror of
https://github.com/zeldaret/ph
synced 2026-07-11 06:34:51 -04:00
Decomp ItemManager::AddItem
This commit is contained in:
+2
-1
@@ -3,7 +3,8 @@
|
||||
|
||||
#define NULL 0
|
||||
|
||||
#define GET_FLAG(arr, pos) (((1 << ((pos) & 0x1f)) & (arr)[pos >> 5]) != 0)
|
||||
#define GET_FLAG(arr, pos) (((1 << ((pos) & 0x1f)) & (arr)[(pos) >> 5]) != 0)
|
||||
#define SET_FLAG(arr, pos) ((arr)[(pos) >> 5] |= 1 << ((pos) & 0x1f))
|
||||
|
||||
#ifdef NONMATCHING
|
||||
#define NONMATCH
|
||||
|
||||
Reference in New Issue
Block a user