mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Qt: facepalm fix in open_dir
This commit is contained in:
parent
2d5a427bd4
commit
e2c1547d95
1 changed files with 1 additions and 1 deletions
|
@ -430,7 +430,7 @@ namespace gui
|
|||
return;
|
||||
}
|
||||
|
||||
if (!fs::is_dir && !fs::create_path(spath))
|
||||
if (!fs::is_dir(spath) && !fs::create_path(spath))
|
||||
{
|
||||
gui_log.error("gui::utils::open_dir: Failed to create path '%s' (%s)", spath, fs::g_tls_error);
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue