From f9495a75e1e1fa2f1b86b71de776aee3a4a815e9 Mon Sep 17 00:00:00 2001 From: inmarket Date: Thu, 27 Feb 2014 07:54:51 +1000 Subject: 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(-) (limited to 'tools') diff --git a/tools/file2c/binaries/windows/file2c.exe b/tools/file2c/binaries/windows/file2c.exe index 28e9a329..57f1a5dd 100644 Binary files a/tools/file2c/binaries/windows/file2c.exe and b/tools/file2c/binaries/windows/file2c.exe differ 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"); -- cgit v1.2.3