match sub_805D8C8

This commit is contained in:
DizzyEggg 2024-10-15 16:27:41 +02:00
parent a610215769
commit f813788fe0
3 changed files with 106 additions and 1359 deletions

View File

@ -108,6 +108,11 @@ static inline bool8 ItemExists(Item *item)
return (item->flags & ITEM_FLAG_EXISTS);
}
static inline bool8 ItemSet(Item *item)
{
return (item->flags & ITEM_FLAG_SET);
}
static inline bool8 ItemInShop(Item *item)
{
return (item->flags & ITEM_FLAG_IN_SHOP);

View File

@ -94,6 +94,11 @@ static inline bool8 MoveFlagExists(Move *move)
return (move->moveFlags & MOVE_FLAG_EXISTS);
}
static inline bool8 MoveFlagSet(Move *move)
{
return (move->moveFlags & MOVE_FLAG_SET);
}
static inline bool8 MoveFlagLinkChain(Move *move)
{
return (move->moveFlags & MOVE_FLAG_SUBSEQUENT_IN_LINK_CHAIN);

File diff suppressed because it is too large Load Diff