From 9c9874509960fa6609ec11881d81db012ad34879 Mon Sep 17 00:00:00 2001 From: Aaron Culliney Date: Mon, 7 Sep 2015 11:08:43 -0700 Subject: [PATCH] Remove unnecessary call to pump key handling codepath --- Android/jni/jnihooks.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Android/jni/jnihooks.c b/Android/jni/jnihooks.c index b09e52f6..6e97cbb3 100644 --- a/Android/jni/jnihooks.c +++ b/Android/jni/jnihooks.c @@ -196,10 +196,6 @@ void Java_org_deadc0de_apple2ix_Apple2Activity_nativeRender(JNIEnv *env, jobject return; } - if (!cpu_isPaused()) { - c_keys_handle_input(-1, 0, 0); - } - #if FPS_LOG static uint32_t prevCount = 0; static uint32_t idleCount = 0;