diff options
| author | 2018-08-14 04:28:24 +0800 | |
|---|---|---|
| committer | 2018-08-14 04:28:24 +0800 | |
| commit | 59d18ef55b40930c1708e9a6f79cf12e125f2a1e (patch) | |
| tree | 907168ca88bd5e31e6098fc4df4488fedd100c55 /src/common/misc.cpp | |
| parent | Merge pull request #927 from bunnei/fix-texs (diff) | |
| download | yuzu-59d18ef55b40930c1708e9a6f79cf12e125f2a1e.tar.gz yuzu-59d18ef55b40930c1708e9a6f79cf12e125f2a1e.tar.xz yuzu-59d18ef55b40930c1708e9a6f79cf12e125f2a1e.zip | |
common/misc: use windows.h
linux-mingw does not really like this.
Diffstat (limited to '')
| -rw-r--r-- | src/common/misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/misc.cpp b/src/common/misc.cpp index 217a87098..3fa8a3bc4 100644 --- a/src/common/misc.cpp +++ b/src/common/misc.cpp | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #include <cstddef> | 5 | #include <cstddef> |
| 6 | #ifdef _WIN32 | 6 | #ifdef _WIN32 |
| 7 | #include <Windows.h> | 7 | #include <windows.h> |
| 8 | #else | 8 | #else |
| 9 | #include <cerrno> | 9 | #include <cerrno> |
| 10 | #include <cstring> | 10 | #include <cstring> |