(Android) fix new FPS measurement

This commit is contained in:
ToadKing 2013-02-04 18:02:10 -05:00
parent f4b30ecfc2
commit bf474b9f63

View File

@ -207,15 +207,15 @@ static void gfx_ctx_set_resize(unsigned width, unsigned height)
static void gfx_ctx_update_window_title(bool reset)
{
(void)reset;
#if 0
if (reset)
gfx_window_title_reset();
char buf[128];
#if 0
if (gfx_get_fps(buf, sizeof(buf), false))
RARCH_LOG("%s.\n", buf);
#else
gfx_get_fps(buf, sizeof(buf), false);
#endif
}