[VC] log FPS to console

This commit is contained in:
ToadKing 2012-11-15 19:08:07 -05:00
parent 2db883baa0
commit 1e6558d18d

View File

@ -110,6 +110,13 @@ static void gfx_ctx_set_resize(unsigned width, unsigned height)
static void gfx_ctx_update_window_title(bool reset)
{
(void)reset;
if (reset)
gfx_window_title_reset();
char buf[128];
if (gfx_window_title(buf, sizeof(buf)))
RARCH_LOG("%s.\n", buf);
}
static void gfx_ctx_get_video_size(unsigned *width, unsigned *height)