From 58bf9e73c1b08d8e1235fc9b6e422f0eb0df0a7b Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Thu, 9 May 2019 22:59:12 +0200 Subject: [PATCH] use DEFAULT_SKIN_FILENAME and DEFAULT_FONT_FILENAME --- src/readini.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/readini.c b/src/readini.c index 91e25349..d3939e08 100644 --- a/src/readini.c +++ b/src/readini.c @@ -899,13 +899,13 @@ int Load_INI(T_Config * conf) conf->Skin_file = strdup(value_label); } else - conf->Skin_file = strdup("skin_DPaint.png"); + conf->Skin_file = strdup(DEFAULT_SKIN_FILENAME); // Optional, name of font file. (>2.0) if(!Load_INI_get_string(file,buffer,"Font_file",value_label,1)) conf->Font_file = strdup(value_label); else - conf->Font_file = strdup("font_Dpaint.png"); + conf->Font_file = strdup(DEFAULT_FONT_FILENAME); // Optional, "fake hardware zoom" factor (>2.1) if (!Load_INI_get_values (file, buffer,"Pixel_ratio",1,values))