diff options
| author | 2015-05-24 19:21:05 -0400 | |
|---|---|---|
| committer | 2015-05-24 19:21:05 -0400 | |
| commit | 8c1ab1c2c45b4908cc957ab420ff7175b7c44f5e (patch) | |
| tree | 106784876221588fb21aa5ae5370ebc3abc82369 /src | |
| parent | Merge pull request #809 from lioncash/header (diff) | |
| download | yuzu-8c1ab1c2c45b4908cc957ab420ff7175b7c44f5e.tar.gz yuzu-8c1ab1c2c45b4908cc957ab420ff7175b7c44f5e.tar.xz yuzu-8c1ab1c2c45b4908cc957ab420ff7175b7c44f5e.zip | |
arm_dyncom_interpreter: Remove unused macro
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_interpreter.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp index e4b5486e0..b0a70cda8 100644 --- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp +++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp | |||
| @@ -3890,7 +3890,6 @@ unsigned InterpreterMainLoop(ARMul_State* cpu) { | |||
| 3890 | 3890 | ||
| 3891 | #define CurrentModeHasSPSR (cpu->Mode != SYSTEM32MODE) && (cpu->Mode != USER32MODE) | 3891 | #define CurrentModeHasSPSR (cpu->Mode != SYSTEM32MODE) && (cpu->Mode != USER32MODE) |
| 3892 | #define PC (cpu->Reg[15]) | 3892 | #define PC (cpu->Reg[15]) |
| 3893 | #define CHECK_EXT_INT if (!cpu->NirqSig && !(cpu->Cpsr & 0x80)) goto END; | ||
| 3894 | 3893 | ||
| 3895 | // GCC and Clang have a C++ extension to support a lookup table of labels. Otherwise, fallback | 3894 | // GCC and Clang have a C++ extension to support a lookup table of labels. Otherwise, fallback |
| 3896 | // to a clunky switch statement. | 3895 | // to a clunky switch statement. |