summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSnDream <sndream@outlook.com>2017-06-25 14:49:57 +0800
committeryenatch <yenatch@gmail.com>2017-06-25 02:49:57 -0400
commit3c8d034a6feb2a447daeb26e9f50aadc12fb0383 (patch)
tree129e0400d560c6577e7c795121bbc5bc7bb58318
parent175cc6536a0667ac1913d03f1041f924a7368dd1 (diff)
pokemon_animation's variable is not initialized (#374)
-rw-r--r--tools/pokemon_animation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pokemon_animation.c b/tools/pokemon_animation.c
index 0728788ec..5eadd6104 100644
--- a/tools/pokemon_animation.c
+++ b/tools/pokemon_animation.c
@@ -229,7 +229,7 @@ int main(int argc, char* argv[]) {
struct Frames frames = {0};
struct Bitmasks bitmasks = {0};
int ch;
- bool use_bitmasks, use_frames;
+ bool use_bitmasks = false, use_frames = false;
char* tilemap_filename;
char* dimensions_filename;