Skip to content

Commit

Permalink
Temporary: Exit "hard" on Android again.
Browse files Browse the repository at this point in the history
This is to prevent more unforeseen issues like the rotation lock
problem in the bugfix release.

Will be reverted again later.
  • Loading branch information
hrydgard committed Feb 15, 2014
1 parent 875fc39 commit 3ba6290
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions UI/MainScreen.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 3ba6290

Please sign in to comment.