aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2014-02-27 07:54:51 +1000
committerinmarket <andrewh@inmarket.com.au>2014-02-27 07:54:51 +1000
commitf9495a75e1e1fa2f1b86b71de776aee3a4a815e9 (patch)
tree9c7d92a50de1c0d3b9c65b608eb4a50c8945b823 /tools
parent11c9033ff00c615da7d3106baca9d38fe6d58788 (diff)
downloaduGFX-f9495a75e1e1fa2f1b86b71de776aee3a4a815e9.tar.gz
uGFX-f9495a75e1e1fa2f1b86b71de776aee3a4a815e9.tar.bz2
uGFX-f9495a75e1e1fa2f1b86b71de776aee3a4a815e9.zip
file2c did not save the -d flag in the output header comment properly.
Diffstat (limited to 'tools')
-rw-r--r--tools/file2c/binaries/windows/file2c.exebin22030 -> 22030 bytes
-rw-r--r--tools/file2c/src/file2c.c2
2 files changed, 1 insertions, 1 deletions
diff --git a/tools/file2c/binaries/windows/file2c.exe b/tools/file2c/binaries/windows/file2c.exe
index 28e9a329..57f1a5dd 100644
--- a/tools/file2c/binaries/windows/file2c.exe
+++ b/tools/file2c/binaries/windows/file2c.exe
Binary files 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");