summaryrefslogtreecommitdiffstats
path: root/src/common/fs/path_util.cpp
diff options
context:
space:
mode:
authorboludoz <francomaro@gmail.com>2023-10-16 01:57:06 +0200
committerboludoz <francomaro@gmail.com>2023-10-16 01:57:06 +0200
commit9ffa1801c75073afb851351ecdd1a8b40e33cc5c (patch)
treeabaf913d230182e94e47bc2d9ea8783fc4e56470 /src/common/fs/path_util.cpp
parentUnnecessary feature removed (diff)
downloadyuzu-9ffa1801c75073afb851351ecdd1a8b40e33cc5c.tar
yuzu-9ffa1801c75073afb851351ecdd1a8b40e33cc5c.tar.gz
yuzu-9ffa1801c75073afb851351ecdd1a8b40e33cc5c.tar.bz2
yuzu-9ffa1801c75073afb851351ecdd1a8b40e33cc5c.tar.lz
yuzu-9ffa1801c75073afb851351ecdd1a8b40e33cc5c.tar.xz
yuzu-9ffa1801c75073afb851351ecdd1a8b40e33cc5c.tar.zst
yuzu-9ffa1801c75073afb851351ecdd1a8b40e33cc5c.zip
Diffstat (limited to 'src/common/fs/path_util.cpp')
-rw-r--r--src/common/fs/path_util.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/common/fs/path_util.cpp b/src/common/fs/path_util.cpp
index bccf953e4..3d88fcf4f 100644
--- a/src/common/fs/path_util.cpp
+++ b/src/common/fs/path_util.cpp
@@ -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{};