From 134f709f59ee65243d0c80fc062f4ec9f12a41c9 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 30 Mar 2026 20:04:58 +0200 Subject: [PATCH] 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. --- Source/Core/UICommon/UICommon.cpp | 1 + 1 file changed, 1 insertion(+) 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));