From f0e444b8d98a0e3902b28d175330ee19d0ac2aea Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 23 Jan 2011 14:48:07 +0100 Subject: [PATCH] Show better log when font loading fails. --- gfx/gl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/gl.c b/gfx/gl.c index 2cfd24bbde..4d7eaa0eab 100644 --- a/gfx/gl.c +++ b/gfx/gl.c @@ -188,7 +188,7 @@ static inline void gl_init_font(gl_t *gl, const char *font_path, unsigned font_s glBindTexture(GL_TEXTURE_2D, gl->texture); } else - SSNES_WARN("Couldn't init font renderer...\n"); + SSNES_WARN("Couldn't init font renderer with font \"%s\"...\n", font_path); #endif }