From dbf1f9db9b7b6570f9e7c91ec66f07daf1fea1dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Fri, 3 May 2024 09:37:35 +0200 Subject: [PATCH] Remove the Exit button on app store builds (review guidelines) --- UI/MainScreen.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UI/MainScreen.cpp b/UI/MainScreen.cpp index 4a8b032a74..f1eda81956 100644 --- a/UI/MainScreen.cpp +++ b/UI/MainScreen.cpp @@ -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);