mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-01 12:15:27 -06:00
Qt: facepalm fix in open_dir
This commit is contained in:
parent
2d5a427bd4
commit
e2c1547d95
@ -430,7 +430,7 @@ namespace gui
|
|||||||
return;
|
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);
|
gui_log.error("gui::utils::open_dir: Failed to create path '%s' (%s)", spath, fs::g_tls_error);
|
||||||
return;
|
return;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user