Typing and formatting errors fixed.
This commit is contained in:
parent
4d4fe69223
commit
9ffa1801c7
6 changed files with 43 additions and 54 deletions
|
@ -260,9 +260,8 @@ fs::path GetExeDirectory() {
|
|||
// the Windows library (Filesystem converts the strings literally).
|
||||
return fs::path{Common::UTF16ToUTF8(wideExePath)}.parent_path();
|
||||
} else {
|
||||
LOG_ERROR(Common_Filesystem,
|
||||
"[GetExeDirectory] Failed to get the path to the executable of the current "
|
||||
"process");
|
||||
LOG_ERROR(Common_Filesystem, "Failed to get the path to the executable of the current "
|
||||
"process");
|
||||
}
|
||||
|
||||
return fs::path{};
|
||||
|
@ -279,8 +278,7 @@ fs::path GetAppDataRoamingDirectory() {
|
|||
// the Windows library (Filesystem converts the strings literally).
|
||||
return fs::path{Common::UTF16ToUTF8(wideAppdataRoamingPath)};
|
||||
} else {
|
||||
LOG_ERROR(Common_Filesystem,
|
||||
"[GetAppDataRoamingDirectory] Failed to get the path to the %APPDATA% directory");
|
||||
LOG_ERROR(Common_Filesystem, "Failed to get the path to the %APPDATA% directory");
|
||||
}
|
||||
|
||||
return fs::path{};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue