mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Shortcuts: Try to create shortcut link path if it doesn't exist
This commit is contained in:
parent
c936de7c20
commit
7106bfcfb9
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ namespace gui::utils
|
|||
}
|
||||
#endif
|
||||
|
||||
if (!fs::is_dir(link_path))
|
||||
if (!fs::is_dir(link_path) && !fs::create_dir(link_path))
|
||||
{
|
||||
sys_log.error("Failed to create shortcut. Folder does not exist: %s", link_path);
|
||||
return false;
|
||||
|
|
Loading…
Add table
Reference in a new issue