From 885f67672a7694e659795742f04e5572f18c11a4 Mon Sep 17 00:00:00 2001 From: bismurphy Date: Wed, 1 Jan 2025 16:06:32 -0500 Subject: [PATCH] fix caps error --- config/symbols.hd.txt | 1 - config/symbols.us.txt | 1 - src/dra_psp/23FE0.c | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/config/symbols.hd.txt b/config/symbols.hd.txt index 016c83261d..33970497ae 100644 --- a/config/symbols.hd.txt +++ b/config/symbols.hd.txt @@ -1107,7 +1107,6 @@ g_Status_defenseEquip = 0x80097C24; g_Status_elementsWeakTo = 0x80097C28; g_Status_elementsResist = 0x80097C2A; g_Status_elementsImmune = 0x80097C2C; -g_Status_ELEMENTSABSORB = 0x80097C2E; g_Status_timerHours = 0x80097C30; g_Status_timerFrames = 0x80097C3C; g_Status_D_80097C40 = 0x80097C40; diff --git a/config/symbols.us.txt b/config/symbols.us.txt index 58a4bde3a6..4e5663bc4f 100644 --- a/config/symbols.us.txt +++ b/config/symbols.us.txt @@ -1141,7 +1141,6 @@ g_Status_defenseEquip = 0x80097C24; g_Status_elementsWeakTo = 0x80097C28; g_Status_elementsResist = 0x80097C2A; g_Status_elementsImmune = 0x80097C2C; -g_Status_ELEMENTSABSORB = 0x80097C2E; g_Status_timerHours = 0x80097C30; g_Status_timerFrames = 0x80097C3C; g_Status_D_80097C40 = 0x80097C40; diff --git a/src/dra_psp/23FE0.c b/src/dra_psp/23FE0.c index f3046628d3..bdaf0ba6ca 100644 --- a/src/dra_psp/23FE0.c +++ b/src/dra_psp/23FE0.c @@ -519,7 +519,7 @@ s32 HandleDamage(DamageParam* damage, s32 arg1, s32 amount, s32 arg3) { } } - if (g_Status.ELEMENTSABSORB & damage->effects) { + if (g_Status.elementsAbsorb & damage->effects) { if (amount < 1) { amount = 1; }