From 32f0c19e7c2003cdf96a09f55e38fb247dfe3bcc Mon Sep 17 00:00:00 2001 From: Fadhil Mandaga <1750918+firodj@users.noreply.github.com> Date: Fri, 13 Aug 2021 17:07:38 -0700 Subject: [PATCH] UI: Fix typo in using My Documents for data. --- UI/GameSettingsScreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/GameSettingsScreen.cpp b/UI/GameSettingsScreen.cpp index 4f987882cf..10b6f00832 100644 --- a/UI/GameSettingsScreen.cpp +++ b/UI/GameSettingsScreen.cpp @@ -1110,7 +1110,7 @@ UI::EventReturn GameSettingsScreen::OnChangeMemStickDir(UI::EventParams &e) { UI::EventReturn GameSettingsScreen::OnSavePathMydoc(UI::EventParams &e) { const Path &PPSSPPpath = File::GetExeDirectory(); - const Path installedFile = installedFile / "installed.txt"; + const Path installedFile = PPSSPPpath / "installed.txt"; installed_ = File::Exists(installedFile); if (otherinstalled_) { File::Delete(PPSSPPpath / "installed.txt");