From ea2046f6b8dec0f19fd362a28609c539839094c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Mon, 9 Jun 2025 17:02:04 +0200 Subject: [PATCH] iOS: Fix URL on More Info button on IAP screen --- UI/IAPScreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/IAPScreen.cpp b/UI/IAPScreen.cpp index 329573b89a..50e8f956bc 100644 --- a/UI/IAPScreen.cpp +++ b/UI/IAPScreen.cpp @@ -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; });