From 2d66796b61c9c2801c0050892d59a1b48f34013f Mon Sep 17 00:00:00 2001 From: Yves Rizoud Date: Mon, 22 Mar 2010 01:49:51 +0000 Subject: [PATCH] More fixes to make DPaint skin and font the defaults. (should have used a global #define) git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1398 416bcca6-2ee7-4201-b75f-2eb2f807beb1 --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index cbe6a348..999b24fb 100644 --- a/src/main.c +++ b/src/main.c @@ -658,7 +658,7 @@ int Init_program(int argc,char * argv[]) gfx = Load_graphics(Config.Skin_file); if (gfx == NULL) { - gfx = Load_graphics("skin_modern.png"); + gfx = Load_graphics("skin_DPaint.png"); if (gfx == NULL) { printf("%s", Gui_loading_error_message); @@ -679,7 +679,7 @@ int Init_program(int argc,char * argv[]) // Font if (!(Menu_font=Load_font(Config.Font_file))) - if (!(Menu_font=Load_font("font_Classic.png"))) + if (!(Menu_font=Load_font("font_DPaint.png"))) { printf("Unable to open the default font file: %s\n", "font_Classic.png"); Error(ERROR_GUI_MISSING);