diff --git a/android/native/jni/main.c b/android/native/jni/main.c index 9d259a2b4c..75863a4490 100644 --- a/android/native/jni/main.c +++ b/android/native/jni/main.c @@ -54,7 +54,7 @@ static void engine_handle_cmd(struct android_app* app, int32_t cmd) break; case APP_CMD_GAINED_FOCUS: // When our app gains focus, we start monitoring the accelerometer. - /* +#if 0 if (g_android.accelerometerSensor != NULL) { ASensorEventQueue_enableSensor(g_android.sensorEventQueue, @@ -64,18 +64,18 @@ static void engine_handle_cmd(struct android_app* app, int32_t cmd) ASensorEventQueue_setEventRate(g_android.sensorEventQueue, g_android.accelerometerSensor, (1000L/60)*1000); } - */ +#endif break; case APP_CMD_LOST_FOCUS: // When our app loses focus, we stop monitoring the accelerometer. // This is to avoid consuming battery while not being used. if (!g_android.window_inited) { - /* +#if 0 if (g_android.accelerometerSensor != NULL) ASensorEventQueue_disableSensor(g_android.sensorEventQueue, g_android.accelerometerSensor); - */ +#endif // Also stop animating. g_android.animating = 0;