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 /src/battle/anim/current.c | |
parent | 486c45dc797b42d1f1ad7f7bdb1c295e6bb36822 (diff) |
Make invisible a boolean
Diffstat (limited to 'src/battle/anim/current.c')
-rw-r--r-- | src/battle/anim/current.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/battle/anim/current.c b/src/battle/anim/current.c index 12da95fa8..32d09ddf2 100644 --- a/src/battle/anim/current.c +++ b/src/battle/anim/current.c @@ -808,7 +808,7 @@ void sub_80D6E9C(u8 taskId) } break; case 3: - gSprites[task->data[15]].invisible = 0; + gSprites[task->data[15]].invisible = FALSE; DestroyAnimVisualTask(taskId); break; } |