mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
facepalm: fix open_config_dir old vs. new location switch up
This commit is contained in:
parent
f4afd56e67
commit
8920eda321
1 changed files with 2 additions and 2 deletions
|
@ -724,10 +724,10 @@ void game_list_frame::ShowContextMenu(const QPoint &pos)
|
|||
QAction* open_config_dir = myMenu.addAction(tr("&Open Custom Config Folder"));
|
||||
connect(open_config_dir, &QAction::triggered, [=]()
|
||||
{
|
||||
if (fs::is_file(Emu.GetCustomConfigPath(currGame.serial, true)))
|
||||
if (fs::is_file(Emu.GetCustomConfigPath(currGame.serial)))
|
||||
open_dir(Emu.GetCustomConfigDir());
|
||||
|
||||
if (fs::is_file(Emu.GetCustomConfigPath(currGame.serial)))
|
||||
if (fs::is_file(Emu.GetCustomConfigPath(currGame.serial, true)))
|
||||
open_dir(data_base_dir);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue