diff options
author | inmarket <andrewh@inmarket.com.au> | 2014-02-27 07:54:51 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2014-02-27 07:54:51 +1000 |
commit | f9495a75e1e1fa2f1b86b71de776aee3a4a815e9 (patch) | |
tree | 9c7d92a50de1c0d3b9c65b608eb4a50c8945b823 /tools/file2c | |
parent | 11c9033ff00c615da7d3106baca9d38fe6d58788 (diff) | |
download | uGFX-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/file2c')
-rw-r--r-- | tools/file2c/binaries/windows/file2c.exe | bin | 22030 -> 22030 bytes | |||
-rw-r--r-- | tools/file2c/src/file2c.c | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/tools/file2c/binaries/windows/file2c.exe b/tools/file2c/binaries/windows/file2c.exe Binary files differindex 28e9a329..57f1a5dd 100644 --- a/tools/file2c/binaries/windows/file2c.exe +++ b/tools/file2c/binaries/windows/file2c.exe 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"); |