mirror of
https://github.com/pret/pmd-red.git
synced 2025-02-21 13:53:51 +00:00
match sub_805D8C8
This commit is contained in:
parent
a610215769
commit
f813788fe0
@ -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);
|
||||
|
@ -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);
|
||||
|
1455
src/code_805D8C8_1.c
1455
src/code_805D8C8_1.c
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user