(PS3) Font change

This commit is contained in:
Twinaphex 2012-08-03 00:02:02 +02:00
parent 15cb863227
commit 35ad0644a9
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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