From f1ff75d815b692876e8d809f98e372ea2ea05113 Mon Sep 17 00:00:00 2001 From: Exfiltratior <50351074+Exfiltratior@users.noreply.github.com> Date: Tue, 7 May 2019 06:57:54 +0200 Subject: [PATCH] correct small mistake --- rpcs3/rpcs3qt/game_list_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/game_list_frame.cpp b/rpcs3/rpcs3qt/game_list_frame.cpp index 6009c61b4b..69ea7e9135 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -357,7 +357,7 @@ void game_list_frame::SortGameList() std::string game_list_frame::GetCacheDirBySerial(const std::string& serial) { - return fs::get_config_dir() + "cache/" + serial; + return fs::get_cache_dir() + "cache/" + serial; } std::string game_list_frame::GetDataDirBySerial(const std::string& serial)