diff options
author | yenatch <yenatch@gmail.com> | 2017-05-28 23:22:10 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-05-28 23:22:10 -0400 |
commit | 6cce67350186d4a0c37766eb5534e76adaad5a48 (patch) | |
tree | f886f8c528da14f44f2fb7125cc06ee979fc8db4 /tools/scan_includes.c | |
parent | 853abd3aa35233e344134486a46ff9585cac3386 (diff) |
Fix the pokemon animation tools.
Fixed a lot of serious bugs. These tools were not functional.
Also added a --girafarig flag for a special case.
Diffstat (limited to 'tools/scan_includes.c')
-rw-r--r-- | tools/scan_includes.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/scan_includes.c b/tools/scan_includes.c index bec42ed75..b6fcca03a 100644 --- a/tools/scan_includes.c +++ b/tools/scan_includes.c @@ -105,6 +105,10 @@ void get_args(int argc, char *argv[]) { case 'h': Options.help = true; break; + default: + usage(); + exit(1); + break; } } } |