diff options
| -rw-r--r-- | src/core/arm/dyncom/arm_dyncom_interpreter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp index 81d8c7026..7ec2f3ef2 100644 --- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp +++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp | |||
| @@ -69,10 +69,10 @@ static void remove_exclusive(ARMul_State* state, ARMword addr){ | |||
| 69 | } | 69 | } |
| 70 | 70 | ||
| 71 | static int CondPassed(ARMul_State* cpu, unsigned int cond) { | 71 | static int CondPassed(ARMul_State* cpu, unsigned int cond) { |
| 72 | #define NFLAG cpu->NFlag | 72 | const u32 NFLAG = cpu->NFlag; |
| 73 | #define ZFLAG cpu->ZFlag | 73 | const u32 ZFLAG = cpu->ZFlag; |
| 74 | #define CFLAG cpu->CFlag | 74 | const u32 CFLAG = cpu->CFlag; |
| 75 | #define VFLAG cpu->VFlag | 75 | const u32 VFLAG = cpu->VFlag; |
| 76 | 76 | ||
| 77 | int temp = 0; | 77 | int temp = 0; |
| 78 | 78 | ||