(Android) PERF_TEST no longer default

This commit is contained in:
twinaphex 2012-12-13 23:09:28 +01:00
parent 7ae47fb860
commit 5421fb8269
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
RARCH_VERSION = "0.9.8-beta3" RARCH_VERSION = "0.9.8-beta3"
LOCAL_PATH := $(call my-dir) LOCAL_PATH := $(call my-dir)
PERF_TEST := 1 PERF_TEST := 0
HAVE_OPENSL := 1 HAVE_OPENSL := 1
HAVE_NEON := 1 HAVE_NEON := 1
HAVE_SINC := 1 HAVE_SINC := 1

View File

@ -256,6 +256,7 @@ static void gfx_ctx_set_resize(unsigned width, unsigned height)
static void gfx_ctx_update_window_title(bool reset) static void gfx_ctx_update_window_title(bool reset)
{ {
(void)reset; (void)reset;
#ifdef PERF_TEST
if (reset) if (reset)
gfx_window_title_reset(); gfx_window_title_reset();
@ -263,6 +264,7 @@ static void gfx_ctx_update_window_title(bool reset)
if (gfx_window_title(buf, sizeof(buf))) if (gfx_window_title(buf, sizeof(buf)))
RARCH_LOG("%s.\n", buf); RARCH_LOG("%s.\n", buf);
#endif
} }