Update z_en_po_sisters.h

macro issue
This commit is contained in:
blackgamma7 2025-12-10 16:24:16 -05:00
parent 758d8e4dcd
commit 8edb0df75a
1 changed files with 3 additions and 3 deletions

View File

@ -39,9 +39,9 @@ typedef enum EnPoSisterNames {
EN_PO_SISTERS_AMY, // green sister, hides in block puzzle
} EnPoSisterNames;
#define POE_SISTER_GET_ID(thisx) PARAMS_GET_U(thisx->params, 8, 2)
#define POE_SISTER_GET_DECOY(thisx) PARAMS_GET_U(thisx->params, 10, 2)
#define POE_SISTER_GET_INTRO(thisx) PARAMS_GET_U(thisx->params, 12, 1)
#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 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