From 453bb4362984f92f5f5670e0c5c06574467f8492 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Mon, 29 Apr 2024 21:58:59 +0200 Subject: [PATCH] Qt: allow to remove vsh cache in context menu --- 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 20a9b3c784..5bb1ec25c3 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -286,7 +286,7 @@ bool game_list_frame::IsEntryVisible(const game_info& game, bool search_fallback std::string game_list_frame::GetCacheDirBySerial(const std::string& serial) { - return rpcs3::utils::get_cache_dir() + serial; + return rpcs3::utils::get_cache_dir() + (serial == "vsh.self" ? "vsh" : serial); } std::string game_list_frame::GetDataDirBySerial(const std::string& serial)