mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Remove the Exit button on app store builds (review guidelines)
This commit is contained in:
parent
3011a5222a
commit
dbf1f9db9b
1 changed files with 3 additions and 0 deletions
|
@ -1279,7 +1279,10 @@ void MainScreen::CreateViews() {
|
|||
}
|
||||
|
||||
rightColumnChoices->Add(new Spacer(25.0));
|
||||
#if !PPSSPP_PLATFORM(IOS_APP_STORE)
|
||||
// Officially, iOS apps should not have exit buttons. Remove it to maximize app store review chances.
|
||||
rightColumnChoices->Add(new Choice(mm->T("Exit")))->OnClick.Handle(this, &MainScreen::OnExit);
|
||||
#endif
|
||||
|
||||
if (vertical) {
|
||||
root_ = new LinearLayout(ORIENT_VERTICAL);
|
||||
|
|
Loading…
Add table
Reference in a new issue