Skip to content

Commit

Permalink
fix caps error
Browse files Browse the repository at this point in the history
  • Loading branch information
bismurphy committed Jan 1, 2025
1 parent b35185b commit 885f676
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion config/symbols.hd.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion config/symbols.us.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/dra_psp/23FE0.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 885f676

Please sign in to comment.