diff options
author | Kaz <kazbloxmc@gmail.com> | 2020-05-26 23:09:27 -0400 |
---|---|---|
committer | Kaz <kazbloxmc@gmail.com> | 2020-05-26 23:09:27 -0400 |
commit | 447dc3bd5d089842bcc8a93bb6bfa8761674cdd6 (patch) | |
tree | fb4499e43f1c25aaed397cd505ec174236da4e39 | |
parent | 754634f966a2e89e3fe72db98045ec7ba8ab305b (diff) |
s32 damage consistency in ProtectStruct.
Most of these structs should be revisited and cleaned up.
-rw-r--r-- | include/battle.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/battle.h b/include/battle.h index 536ac5995..afebbc781 100644 --- a/include/battle.h +++ b/include/battle.h @@ -130,8 +130,8 @@ struct ProtectStruct u32 free : 4; /*field3*/ u32 field3 : 8; - u32 physicalDmg; - u32 specialDmg; + s32 physicalDmg; + s32 specialDmg; u8 physicalBattlerId; u8 specialBattlerId; u16 fieldE; |