mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
UICommon: Properly set user dir if ./user is a file (not a directory)
This commit is contained in:
parent
d531fe6a1d
commit
8fe7e271f3
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ void SetUserDirectory(const std::string& custom_path)
|
|||
user_path += DIR_SEP;
|
||||
|
||||
#else
|
||||
if (File::Exists(ROOT_DIR DIR_SEP USERDATA_DIR))
|
||||
if (File::IsDirectory(ROOT_DIR DIR_SEP USERDATA_DIR))
|
||||
{
|
||||
user_path = ROOT_DIR DIR_SEP USERDATA_DIR DIR_SEP;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue