From 5f96dc6867a509291af4e9b2632ae5c548101707 Mon Sep 17 00:00:00 2001 From: dhewg Date: Tue, 22 Mar 2011 20:29:08 +0100 Subject: ANDROID: Fix timer frequency to match SDL --- backends/platform/android/android.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends/platform/android/android.cpp') diff --git a/backends/platform/android/android.cpp b/backends/platform/android/android.cpp index 69b3f1e084..9a6995646c 100644 --- a/backends/platform/android/android.cpp +++ b/backends/platform/android/android.cpp @@ -162,7 +162,7 @@ void *OSystem_Android::timerThreadFunc(void *arg) { struct timespec tv; tv.tv_sec = 0; - tv.tv_nsec = 100 * 1000 * 1000; // 100ms + tv.tv_nsec = 10 * 1000 * 1000; // 10ms while (!system->_timer_thread_exit) { if (JNI::pause) { -- cgit v1.2.3