Temporary: Exit "hard" on Android again.

This is to prevent more unforeseen issues like the rotation lock
problem in the bugfix release.

Will be reverted again later.
This commit is contained in:
Henrik Rydgard 2014-02-15 10:00:29 +01:00
parent 875fc39a01
commit 3ba629081b

View File

@ -948,6 +948,9 @@ UI::EventReturn MainScreen::OnExit(UI::EventParams &e) {
System_SendMessage("finish", "");
// We shouldn't call NativeShutdown here at all, it should be done by the framework.
#ifdef ANDROID
exit(0);
#endif
globalUIState = UISTATE_EXIT;
return UI::EVENT_DONE;