diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_interpreter.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp index a66560af2..53da7ca9c 100644 --- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp +++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp | |||
| @@ -13,6 +13,14 @@ | |||
| 13 | 13 | ||
| 14 | using namespace std; | 14 | using namespace std; |
| 15 | 15 | ||
| 16 | // __WIN32__ was never defined on MSVC, but it is on MinGW, | ||
| 17 | // so we need to remove it. | ||
| 18 | // #ifdefs to __WIN32__ are dead code and will not even compile | ||
| 19 | // anymore, due to bank_defs.h missing. | ||
| 20 | #ifdef _WIN32 | ||
| 21 | #undef __WIN32__ | ||
| 22 | #endif | ||
| 23 | |||
| 16 | #include "core/arm/skyeye_common/armdefs.h" | 24 | #include "core/arm/skyeye_common/armdefs.h" |
| 17 | #include "core/arm/skyeye_common/armmmu.h" | 25 | #include "core/arm/skyeye_common/armmmu.h" |
| 18 | #include "arm_dyncom_thumb.h" | 26 | #include "arm_dyncom_thumb.h" |