From 35ad0644a95c566d5e977697dade6bda2b08d0dc Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Fri, 3 Aug 2012 00:02:02 +0200 Subject: [PATCH] (PS3) Font change --- gfx/fonts/ps3_libdbgfont.c | 2 +- gfx/gl_font.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/fonts/ps3_libdbgfont.c b/gfx/fonts/ps3_libdbgfont.c index 103c0c92c3..16dd72375c 100644 --- a/gfx/fonts/ps3_libdbgfont.c +++ b/gfx/fonts/ps3_libdbgfont.c @@ -42,7 +42,7 @@ void gl_render_msg(gl_t *gl, const char *msg) cellDbgFontPrintf(g_settings.video.msg_pos_x, 0.75f, 1.05f, WHITE, msg); } -void gl_render_msg_place(float x, float y, float scale, uint32_t color, const char *msg, ...) +void gl_render_msg_place(float x, float y, float scale, uint32_t color, const char *msg) { cellDbgFontPrintf(x, y, scale, color, msg); } diff --git a/gfx/gl_font.h b/gfx/gl_font.h index 8f48f87332..45790d199f 100644 --- a/gfx/gl_font.h +++ b/gfx/gl_font.h @@ -24,7 +24,7 @@ void gl_render_msg(gl_t *gl, const char *msg); void gl_render_msg_post(gl_t *gl); #ifdef RARCH_CONSOLE -void gl_render_msg_place(float x, float y, float scale, uint32_t color, const char *msg, ...); +void gl_render_msg_place(float x, float y, float scale, uint32_t color, const char *msg); #endif #endif