shithub: pokecrystal

Download patch

ref: a71005fafa13fe325d6a3fc62f24dea8ec97ffb2
parent: 384788f3700a5c429dfa86c6ec673a648b4b1c42
author: yenatch <yenatch@gmail.com>
date: Sat Jun 17 20:54:02 EDT 2017

Remove debug statement from tools/gfx

--- a/tools/gfx.c
+++ b/tools/gfx.c
@@ -31,7 +31,7 @@
 		{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 @@
 		case -1:
 			break;
 		default:
-			printf("ay %d", opt);
 			usage();
 			exit(1);
 			break;