From eefc81ed8c03389cc9630398a54c32576f15beae Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 4 May 2022 13:31:32 +1000 Subject: [PATCH] Qt: Fix incorrect resources directory on config reset --- pcsx2/Pcsx2Config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/Pcsx2Config.cpp b/pcsx2/Pcsx2Config.cpp index 5f71a86cec..ec2a806d5b 100644 --- a/pcsx2/Pcsx2Config.cpp +++ b/pcsx2/Pcsx2Config.cpp @@ -1239,8 +1239,8 @@ void EmuFolders::SetDefaults() Covers = DataRoot.Combine(wxDirName("covers")); GameSettings = DataRoot.Combine(wxDirName("gamesettings")); Cache = DataRoot.Combine(wxDirName("cache")); - Resources = AppRoot.Combine(wxDirName("resources")); - Textures = AppRoot.Combine(wxDirName("textures")); + + Textures = DataRoot.Combine(wxDirName("textures")); } static wxDirName LoadPathFromSettings(SettingsInterface& si, const wxDirName& root, const char* name, const char* def)