From e790877b36df0cb9aebec2025a8dc7e8a8e88848 Mon Sep 17 00:00:00 2001 From: Albert Cahalan Date: Thu, 6 Jan 2005 18:48:40 +0000 Subject: [PATCH] minor debugging changes --- src/tuxpaint.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/tuxpaint.c b/src/tuxpaint.c index 1b115104c..25c22e68f 100644 --- a/src/tuxpaint.c +++ b/src/tuxpaint.c @@ -14146,6 +14146,7 @@ static void loadfonts(const char * const dir, int fatal) user_font_styles[num_font_styles]->family = strdup(family); user_font_styles[num_font_styles]->style = strdup(style); num_font_styles++; + //printf("Accepted: %s, %s, %s\n", d_names[i], family, style); } else { @@ -14163,6 +14164,10 @@ static void loadfonts(const char * const dir, int fatal) } TTF_CloseFont(font); } + else + { + printf("could not open %s\n", d_names[i]); + } show_progress_bar(); } }