diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-01-24 12:39:40 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-01-24 12:39:40 -0500 |
commit | 9ecd065b5026126389e5011c2d99fced21b62794 (patch) | |
tree | 5c131dd3fdc095c0d78b7bb41354563a40bf6f3b /include | |
parent | ce5bc554e5739044af0c10eb6cc9231308fb28ce (diff) |
Review changes
Diffstat (limited to 'include')
-rw-r--r-- | include/global.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/global.h b/include/global.h index 561410a45..e33159898 100644 --- a/include/global.h +++ b/include/global.h @@ -697,12 +697,12 @@ struct TrainerTower u32 bestTime; u8 floorsCleared; u8 unk9; - u8 receivedPrize:1; - u8 checkedFinalTime:1; - u8 spokeToOwner:1; - u8 hasLost:1; - u8 unkA_4:1; - u8 validated:1; + bool8 receivedPrize:1; + bool8 checkedFinalTime:1; + bool8 spokeToOwner:1; + bool8 hasLost:1; + bool8 unkA_4:1; + bool8 validated:1; }; struct TrainerRematchState |