mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Remove debug statement from tools/gfx
This commit is contained in:
parent
384788f370
commit
a71005fafa
@ -31,7 +31,7 @@ void get_args(int argc, char *argv[]) {
|
||||
{0}
|
||||
};
|
||||
for (int opt = 0; opt != -1;) {
|
||||
switch(opt = getopt_long(argc, argv, "ho:d:", long_options)) {
|
||||
switch (opt = getopt_long(argc, argv, "ho:d:", long_options)) {
|
||||
case 'h':
|
||||
Options.help = true;
|
||||
break;
|
||||
@ -45,7 +45,6 @@ void get_args(int argc, char *argv[]) {
|
||||
case -1:
|
||||
break;
|
||||
default:
|
||||
printf("ay %d", opt);
|
||||
usage();
|
||||
exit(1);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user