diff options
| author | JMC47 <JMC4789@gmail.com> | 2026-07-08 11:48:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-08 11:48:24 -0400 |
| commit | 77e92d042cd0da27646b02bbc72b801b221a760a (patch) | |
| tree | 329aa467813c7d6a95279fb6e04daae61678d354 /Source/Core/Common/FileUtil.cpp | |
| parent | 33dd4a11819cccc75ef5b5e824056c46fc9dc68d (diff) | |
| parent | e222665eb0a67b8d66b3e0f48476a8e62987fed3 (diff) | |
Merge pull request #14207 from cscd98/lower-case
mingw: lower case windows includes
Diffstat (limited to 'Source/Core/Common/FileUtil.cpp')
| -rw-r--r-- | Source/Core/Common/FileUtil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp index 9f17a58675..10032a03c5 100644 --- a/Source/Core/Common/FileUtil.cpp +++ b/Source/Core/Common/FileUtil.cpp @@ -29,13 +29,13 @@ #include "Common/StringUtil.h" #ifdef _WIN32 -#include <Windows.h> -#include <Shlwapi.h> +#include <windows.h> #include <commdlg.h> // for GetSaveFileName #include <direct.h> // getcwd #include <io.h> #include <objbase.h> // guid stuff #include <shellapi.h> +#include <shlwapi.h> #else #include <libgen.h> #include <stdlib.h> |
