diff --git a/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.c b/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.c index 85eab43c76..0e4b6a3c12 100644 --- a/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.c +++ b/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.c @@ -204,7 +204,7 @@ void EnPoSisters_Init(Actor* thisx, PlayState* play) { this->flags = EN_PO_SISTERS_FLAG_TORCH; this->circleDist = 110.0f; this->actor.flags &= ~ACTOR_FLAG_ATTENTION_ENABLED; - if (POE_SISTER_GET_INTRO(&this->actor)) { + if (POE_SISTER_GET_INTRO(this)) { EnPoSisters_SetupIntro(this, play); } else if (this->sisterID == EN_PO_SISTERS_MEG) { if (this->decoyID == 0) { diff --git a/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.h b/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.h index afe56f9809..33a0e3f09c 100644 --- a/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.h +++ b/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.h @@ -41,7 +41,7 @@ typedef enum EnPoSisterNames { #define POE_SISTER_GET_ID(x) PARAMS_GET_U(x->params, 8, 2) #define POE_SISTER_GET_DECOY(x) PARAMS_GET_U(x->params, 10, 2) -#define POE_SISTER_GET_INTRO(x) PARAMS_GET_U(x->params, 12, 1) +#define POE_SISTER_GET_INTRO(x) PARAMS_GET_U(x->actor.params, 12, 1) #define EN_PO_SISTERS_PARAM_N(n) (n << 8) // param for which sister by number #define EN_PO_SISTERS_PARAM(name) (EN_PO_SISTERS_##name << 8) // param for which sister by name