diff options
| author | 2016-12-03 21:08:02 +0100 | |
|---|---|---|
| committer | 2016-12-05 19:09:16 +0100 | |
| commit | 45d941d62e2accea92f5b5183afe760e69a618ac (patch) | |
| tree | 123b8c13185b472a1fa413c3b8caf42980106207 /src/common/timer.cpp | |
| parent | Merge pull request #2269 from Subv/update_dynarmic (diff) | |
| download | yuzu-45d941d62e2accea92f5b5183afe760e69a618ac.tar.gz yuzu-45d941d62e2accea92f5b5183afe760e69a618ac.tar.xz yuzu-45d941d62e2accea92f5b5183afe760e69a618ac.zip | |
Support mingw cross-compile
Diffstat (limited to 'src/common/timer.cpp')
| -rw-r--r-- | src/common/timer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/timer.cpp b/src/common/timer.cpp index e843cbd9c..c9803109e 100644 --- a/src/common/timer.cpp +++ b/src/common/timer.cpp | |||
| @@ -4,7 +4,8 @@ | |||
| 4 | 4 | ||
| 5 | #include <time.h> | 5 | #include <time.h> |
| 6 | #ifdef _WIN32 | 6 | #ifdef _WIN32 |
| 7 | #include <Windows.h> | 7 | #include <windows.h> |
| 8 | // windows.h needs to be included before other windows headers | ||
| 8 | #include <mmsystem.h> | 9 | #include <mmsystem.h> |
| 9 | #include <sys/timeb.h> | 10 | #include <sys/timeb.h> |
| 10 | #else | 11 | #else |