diff options
| author | 2014-11-28 21:50:50 -0800 | |
|---|---|---|
| committer | 2014-11-28 21:50:50 -0800 | |
| commit | a19354acedbfeafd28219c48a1ec32f76dd17a54 (patch) | |
| tree | dfe26754d97df19104358521bfc03daaa140992f /src | |
| parent | Fix MinGW build (diff) | |
| download | yuzu-a19354acedbfeafd28219c48a1ec32f76dd17a54.tar.gz yuzu-a19354acedbfeafd28219c48a1ec32f76dd17a54.tar.xz yuzu-a19354acedbfeafd28219c48a1ec32f76dd17a54.zip | |
Add comment regarding __WIN32__ in SkyEye code
Diffstat (limited to '')
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_interpreter.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp index 0a5c7ee6e..37925e8a8 100644 --- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp +++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp | |||
| @@ -34,6 +34,10 @@ | |||
| 34 | 34 | ||
| 35 | using namespace std; | 35 | using namespace std; |
| 36 | 36 | ||
| 37 | // __WIN32__ was never defined on MSVC, but it is on MinGW, | ||
| 38 | // so we need to remove it. | ||
| 39 | // #ifdefs to __WIN32__ are dead code and will not even compile | ||
| 40 | // anymore, due to bank_defs.h missing. | ||
| 37 | #ifdef _WIN32 | 41 | #ifdef _WIN32 |
| 38 | #undef __WIN32__ | 42 | #undef __WIN32__ |
| 39 | #endif | 43 | #endif |