mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Qt: remove cache dir when deleting games
This commit is contained in:
parent
26021e11f7
commit
057f5beac6
1 changed files with 8 additions and 3 deletions
|
@ -1426,9 +1426,14 @@ void game_list_frame::ShowContextMenu(const QPoint &pos)
|
|||
{
|
||||
if (remove_caches)
|
||||
{
|
||||
RemoveShadersCache(cache_base_dir);
|
||||
RemovePPUCache(cache_base_dir);
|
||||
RemoveSPUCache(cache_base_dir);
|
||||
if (fs::is_dir(cache_base_dir))
|
||||
{
|
||||
if (fs::remove_all(cache_base_dir))
|
||||
game_list_log.notice("Removed cache directory: '%s'", cache_base_dir);
|
||||
else
|
||||
game_list_log.error("Could not remove cache directory: '%s' (%s)", cache_base_dir, fs::g_tls_error);
|
||||
}
|
||||
|
||||
RemoveCustomConfiguration(current_game.serial);
|
||||
RemoveCustomPadConfiguration(current_game.serial);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue