From f9495a75e1e1fa2f1b86b71de776aee3a4a815e9 Mon Sep 17 00:00:00 2001 From: inmarket Date: Thu, 27 Feb 2014 07:54:51 +1000 Subject: [PATCH] file2c did not save the -d flag in the output header comment properly. --- tools/file2c/binaries/windows/file2c.exe | Bin 22030 -> 22030 bytes tools/file2c/src/file2c.c | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/file2c/binaries/windows/file2c.exe b/tools/file2c/binaries/windows/file2c.exe index 28e9a32915aa45034c1a5ead9878287fd0fc30db..57f1a5dd1ec3ff9cd6b74708cd7edd5aefd8b520 100644 GIT binary patch delta 31 ncmeBM!`QcmaY6@+X#!vH#2z1J$GZ$0Z+|dkOxb+K$VnLh!PN{q delta 31 ncmeBM!`QcmaY6@6%d9U!6MKA^%S0JB-u__7n6&wfk&`k2*aQs~ diff --git a/tools/file2c/src/file2c.c b/tools/file2c/src/file2c.c index f1415fe7..87ea88e9 100644 --- a/tools/file2c/src/file2c.c +++ b/tools/file2c/src/file2c.c @@ -150,7 +150,7 @@ size_t i; fprintf(f_output, "using...\n *\n *\t%s", opt_progname); if (opt_arrayname || opt_static[0] || opt_const[0] || opt_breakblocks || opt_romdir) { fprintf(f_output, " -"); - if (opt_romdir) fprintf(f_output, "b"); + if (opt_romdir) fprintf(f_output, "d"); if (opt_breakblocks) fprintf(f_output, "b"); if (opt_const[0]) fprintf(f_output, "c"); if (opt_static[0]) fprintf(f_output, "s");