mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-24 23:09:54 -05:00
10 lines
248 B
C
10 lines
248 B
C
#include "exclusive_item.h"
|
|
|
|
bool8 ExclusiveItemEffectFlagTest(u32 *effect_flags, u32 effect_id)
|
|
{
|
|
u32 effect_bit = effect_id >> 5;
|
|
if (effect_flags[effect_bit] & 1 << effect_id - (effect_bit << 5))
|
|
return TRUE;
|
|
return FALSE;
|
|
}
|