diff options
| author | 2014-05-20 22:26:40 -0400 | |
|---|---|---|
| committer | 2014-05-20 22:26:40 -0400 | |
| commit | a721a4eb33a06b532e36e5a49578abd8338d0d28 (patch) | |
| tree | 5f0e0972a60edc773638cc3512aec8df9761c03a /src/core/arm/interpreter/arminit.cpp | |
| parent | armemu: missed rename of "Syscall" to "SVC" (diff) | |
| download | yuzu-a721a4eb33a06b532e36e5a49578abd8338d0d28.tar.gz yuzu-a721a4eb33a06b532e36e5a49578abd8338d0d28.tar.xz yuzu-a721a4eb33a06b532e36e5a49578abd8338d0d28.zip | |
arm: removed include of windows.h from armdefs.h to arminit.c (only module that uses it)
Diffstat (limited to 'src/core/arm/interpreter/arminit.cpp')
| -rw-r--r-- | src/core/arm/interpreter/arminit.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/arm/interpreter/arminit.cpp b/src/core/arm/interpreter/arminit.cpp index 2c771cdda..e05667bea 100644 --- a/src/core/arm/interpreter/arminit.cpp +++ b/src/core/arm/interpreter/arminit.cpp | |||
| @@ -17,8 +17,11 @@ | |||
| 17 | 17 | ||
| 18 | 18 | ||
| 19 | #include "common/platform.h" | 19 | #include "common/platform.h" |
| 20 | |||
| 20 | #if EMU_PLATFORM == PLATFORM_LINUX | 21 | #if EMU_PLATFORM == PLATFORM_LINUX |
| 21 | #include <unistd.h> | 22 | #include <unistd.h> |
| 23 | #elif EMU_PLATFORM == PLATFORM_WINDOWS | ||
| 24 | #include <windows.h> | ||
| 22 | #endif | 25 | #endif |
| 23 | 26 | ||
| 24 | #include <math.h> | 27 | #include <math.h> |