Decomp ItemManager::AddItem

This commit is contained in:
Aetias
2024-02-18 12:59:14 +01:00
parent f48b579b62
commit 2a3133f999
3 changed files with 7 additions and 25 deletions
+2 -1
View File
@@ -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