From 6bc9a96e38d784fcf720ad2944d34ec18e4681fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sat, 3 Nov 2018 17:35:21 +0100 Subject: [PATCH] Comply with new Google Play policy that is not happy with "Support PPSSPP" leading to the PPSSPP Gold app in Play --- UI/MainScreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/MainScreen.cpp b/UI/MainScreen.cpp index 1a5d31cee7..6956f95b50 100644 --- a/UI/MainScreen.cpp +++ b/UI/MainScreen.cpp @@ -922,7 +922,7 @@ void MainScreen::CreateViews() { rightColumnItems->Add(new Choice(mm->T("Credits")))->OnClick.Handle(this, &MainScreen::OnCredits); rightColumnItems->Add(new Choice(mm->T("www.ppsspp.org")))->OnClick.Handle(this, &MainScreen::OnPPSSPPOrg); if (!System_GetPropertyBool(SYSPROP_APP_GOLD)) { - Choice *gold = rightColumnItems->Add(new Choice(mm->T("Support PPSSPP"))); + Choice *gold = rightColumnItems->Add(new Choice(mm->T("Buy PPSSPP Gold"))); gold->OnClick.Handle(this, &MainScreen::OnSupport); gold->SetIcon(I_ICONGOLD); }