From e62162e4869fce43f4c06401e58fac61cdf2d482 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sun, 26 Feb 2023 13:07:48 -0800 Subject: [PATCH] UICommon: Create Load/DynamicInputTextures directory on startup Fix console error spam on Dolphin and game startup if the directory doesn't exist. --- 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 608d6237770a..6b345e3b8125 100644 --- a/Source/Core/UICommon/UICommon.cpp +++ b/Source/Core/UICommon/UICommon.cpp @@ -81,6 +81,7 @@ static void CreateLoadPath(std::string path) File::CreateFullPath(File::GetUserPath(D_HIRESTEXTURES_IDX)); File::CreateFullPath(File::GetUserPath(D_RIIVOLUTION_IDX)); File::CreateFullPath(File::GetUserPath(D_GRAPHICSMOD_IDX)); + File::CreateFullPath(File::GetUserPath(D_DYNAMICINPUT_IDX)); } static void CreateResourcePackPath(std::string path)