diff options
| author | Dentomologist <dentomologist@gmail.com> | 2023-02-26 13:07:48 -0800 |
|---|---|---|
| committer | Dentomologist <dentomologist@gmail.com> | 2023-02-26 13:10:15 -0800 |
| commit | e62162e4869fce43f4c06401e58fac61cdf2d482 (patch) | |
| tree | 75351139394fe1db155088b2237c73caec2a9040 /Source/Core | |
| parent | 4fb3042944e71213167b0bbc417508b3b1c9467e (diff) | |
UICommon: Create Load/DynamicInputTextures directory on startup
Fix console error spam on Dolphin and game startup if the directory
doesn't exist.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/UICommon/UICommon.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/UICommon/UICommon.cpp b/Source/Core/UICommon/UICommon.cpp index 608d623777..6b345e3b81 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) |
