dyncom: Remove unnecessary defines

These can simply be const vars.
This commit is contained in:
Lioncash 2015-05-14 12:15:03 -04:00
parent 0530fd2499
commit f4921d0f9d

View File

@ -69,10 +69,10 @@ static void remove_exclusive(ARMul_State* state, ARMword addr){
} }
static int CondPassed(ARMul_State* cpu, unsigned int cond) { static int CondPassed(ARMul_State* cpu, unsigned int cond) {
#define NFLAG cpu->NFlag const u32 NFLAG = cpu->NFlag;
#define ZFLAG cpu->ZFlag const u32 ZFLAG = cpu->ZFlag;
#define CFLAG cpu->CFlag const u32 CFLAG = cpu->CFlag;
#define VFLAG cpu->VFlag const u32 VFLAG = cpu->VFlag;
int temp = 0; int temp = 0;