summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2026-03-30 20:04:58 +0200
committerJosJuice <josjuice@gmail.com>2026-03-30 20:04:58 +0200
commit134f709f59ee65243d0c80fc062f4ec9f12a41c9 (patch)
treea314c4084b57313e781aa1227051b3e07dd24610 /Source/Core
parent67f1afeb745731b9867dd710d91121b6c10aeec0 (diff)
UICommon: Create User/Logs/ at startup
We used to create User/Logs/ as a side effect of creating User/Logs/Mail/, but the creation of User/Logs/Mail/ was removed in 8cbfee2, so now nothing is creating User/Logs/ anymore. Let's explicitly create it.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/UICommon/UICommon.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/UICommon/UICommon.cpp b/Source/Core/UICommon/UICommon.cpp
index c56d1e1d09..51e0798463 100644
--- a/Source/Core/UICommon/UICommon.cpp
+++ b/Source/Core/UICommon/UICommon.cpp
@@ -283,6 +283,7 @@ void CreateDirectories()
File::CreateFullPath(File::GetUserPath(D_TRIUSER_IDX));
File::CreateFullPath(File::GetUserPath(D_HIRESTEXTURES_IDX));
File::CreateFullPath(File::GetUserPath(D_GRAPHICSMOD_IDX));
+ File::CreateFullPath(File::GetUserPath(D_LOGS_IDX));
File::CreateFullPath(File::GetUserPath(D_MAPS_IDX));
File::CreateFullPath(File::GetUserPath(D_SCREENSHOTS_IDX));
File::CreateFullPath(File::GetUserPath(D_SHADERS_IDX));