iOS: Fix URL on More Info button on IAP screen

This commit is contained in:
Henrik Rydgård
2025-06-09 17:02:04 +02:00
parent a900363074
commit ea2046f6b8
+1 -1
View File
@@ -69,7 +69,7 @@ void IAPScreen::CreateViews() {
Choice *moreInfo = rightColumnItems->Add(new Choice(di->T("More info")));
moreInfo->OnClick.Add([](UI::EventParams &) {
System_LaunchUrl(LaunchUrlType::BROWSER_URL, "https://www.ppsspp.org/docs/reference/whygold/");
System_LaunchUrl(LaunchUrlType::BROWSER_URL, "https://www.ppsspp.org/buygold_ios");
return UI::EVENT_DONE;
});