aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/android/android.cpp
diff options
context:
space:
mode:
authordhewg2011-03-22 20:29:08 +0100
committerdhewg2011-03-22 21:02:42 +0100
commit5f96dc6867a509291af4e9b2632ae5c548101707 (patch)
treebd7ed2adfc5c851a85af0095d3dc3c60e4eb173d /backends/platform/android/android.cpp
parent18d9654ca2b86033aff58c1e20ec9683cb97c47f (diff)
downloadscummvm-rg350-5f96dc6867a509291af4e9b2632ae5c548101707.tar.gz
scummvm-rg350-5f96dc6867a509291af4e9b2632ae5c548101707.tar.bz2
scummvm-rg350-5f96dc6867a509291af4e9b2632ae5c548101707.zip
ANDROID: Fix timer frequency to match SDL
Diffstat (limited to 'backends/platform/android/android.cpp')
-rw-r--r--backends/platform/android/android.cpp2
1 files changed, 1 insertions, 1 deletions
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) {