ANDROID: Disable the savegame parachute

Only on the stable branch, since this is unfinished and might wipe
savegames of the user.
(cherry picked from commit cf41ac0fec)
This commit is contained in:
dhewg 2011-05-01 18:07:27 +02:00 committed by Alyssa Milburn
parent 5a4b017629
commit 29dd6df611

View file

@ -603,10 +603,12 @@ void JNI::setPause(JNIEnv *env, jobject self, jboolean value) {
g_engine->pauseEngine(value);
#if 0
if (value &&
g_engine->hasFeature(Engine::kSupportsSavingDuringRuntime) &&
g_engine->canSaveGameStateCurrently())
g_engine->saveGameState(0, "Android parachute");
#endif
}
pause = value;