mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-23 20:38:07 +01:00
Simplify default path creation
This commit is contained in:
parent
1c19f418c6
commit
52cad2114d
1 changed files with 1 additions and 2 deletions
|
@ -416,8 +416,7 @@ std::string Local_Storage::get_user_appdata_path()
|
||||||
} else {
|
} else {
|
||||||
char *homedir = getenv("HOME");
|
char *homedir = getenv("HOME");
|
||||||
if (homedir) {
|
if (homedir) {
|
||||||
user_appdata_path = homedir;
|
user_appdata_path = std::string(homedir) + "/.local/share";
|
||||||
user_appdata_path.append(PATH_SEPARATOR).append(".local").append(PATH_SEPARATOR).append("share");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue