Revert improper usage

This commit is contained in:
JordanLongstaff 2025-06-04 12:32:01 -04:00
parent 56e9500d55
commit 7c6d79f86a
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ Actor* func_80AEB124(PlayState* play) {
Actor* actorIt = play->actorCtx.actorLists[ACTORCAT_BOSS].head;
while (actorIt != NULL) {
if ((actorIt->id == ACTOR_DEMO_EFFECT) && (ENRU1_TYPE(actorIt) == DEMO_EFFECT_JEWEL_ZORA)) {
if ((actorIt->id == ACTOR_DEMO_EFFECT) && (PARAMS_GET_U(actorIt->params, 0, 8) == DEMO_EFFECT_JEWEL_ZORA)) {
return actorIt;
}
actorIt = actorIt->next;