diff options
Diffstat (limited to 'devtools/convbdf.c')
-rw-r--r-- | devtools/convbdf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devtools/convbdf.c b/devtools/convbdf.c index 4b1640dba7..e465b77a9c 100644 --- a/devtools/convbdf.c +++ b/devtools/convbdf.c @@ -721,7 +721,7 @@ int gen_c_source(struct font* pf, char *path) { char bbuf[256]; char hdr1[] = { "/* Generated by convbdf on %s. */\n" - "#include \"graphics/font.h\"\n" + "#include \"graphics/fonts/bdf.h\"\n" "\n" "/* Font information:\n" " name: %s\n" @@ -890,7 +890,7 @@ int gen_c_source(struct font* pf, char *path) { fprintf(ofp, "/* Exported structure definition. */\n" - "static const FontDesc desc = {\n" + "static const BdfFontDesc desc = {\n" "\t" "\"%s\",\n" "\t" "%d,\n" "\t" "%d,\n" @@ -917,7 +917,7 @@ int gen_c_source(struct font* pf, char *path) { pf->defaultchar); fprintf(ofp, "\n" "#if !(defined(__GP32__))\n"); - fprintf(ofp, "extern const NewFont g_sysfont(desc);\n"); + fprintf(ofp, "extern const BdfFont g_sysfont(desc);\n"); fprintf(ofp, "#else\n"); fprintf(ofp, "DEFINE_FONT(g_sysfont)\n"); fprintf(ofp, "#endif\n"); |