diff options
author | PokeCodec <67983839+PokeCodec@users.noreply.github.com> | 2020-09-01 12:07:39 -0400 |
---|---|---|
committer | PokeCodec <67983839+PokeCodec@users.noreply.github.com> | 2020-09-01 12:07:39 -0400 |
commit | bfd7a6d66af787f5d8e15e0556f3155536a6878e (patch) | |
tree | 4bf161f33c406a956481698570e788711b520547 /include/sprite.h | |
parent | 486c45dc797b42d1f1ad7f7bdb1c295e6bb36822 (diff) |
Make invisible a boolean
Diffstat (limited to 'include/sprite.h')
-rw-r--r-- | include/sprite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sprite.h b/include/sprite.h index e278f3c3d..d96050f6d 100644 --- a/include/sprite.h +++ b/include/sprite.h @@ -208,7 +208,7 @@ struct Sprite /*0x3E*/ u16 inUse:1; //1 u16 coordOffsetEnabled:1; //2 - u16 invisible:1; //4 + bool16 invisible:1; //4 u16 flags_3:1; //8 u16 flags_4:1; //0x10 u16 flags_5:1; //0x20 |