pmd-sky/src/exclusive_item.c
2025-06-25 21:32:48 -04:00

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;
}