From 5421fb8269a3d2e5e981a2d1a96aa78f225dddda Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 13 Dec 2012 23:09:28 +0100 Subject: [PATCH] (Android) PERF_TEST no longer default --- android/native/jni/Android.mk | 2 +- gfx/context/androidegl_ctx.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/android/native/jni/Android.mk b/android/native/jni/Android.mk index 91b76bc2d1..2669a8fb28 100644 --- a/android/native/jni/Android.mk +++ b/android/native/jni/Android.mk @@ -1,6 +1,6 @@ RARCH_VERSION = "0.9.8-beta3" LOCAL_PATH := $(call my-dir) -PERF_TEST := 1 +PERF_TEST := 0 HAVE_OPENSL := 1 HAVE_NEON := 1 HAVE_SINC := 1 diff --git a/gfx/context/androidegl_ctx.c b/gfx/context/androidegl_ctx.c index a1001bdd9f..7a0b5390d2 100644 --- a/gfx/context/androidegl_ctx.c +++ b/gfx/context/androidegl_ctx.c @@ -256,6 +256,7 @@ static void gfx_ctx_set_resize(unsigned width, unsigned height) static void gfx_ctx_update_window_title(bool reset) { (void)reset; +#ifdef PERF_TEST if (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))) RARCH_LOG("%s.\n", buf); +#endif }