mirror of https://github.com/mgba-emu/mgba.git
parent
3f682034d6
commit
94edade18e
|
@ -63,7 +63,7 @@ enum GBAActionReplay3Condition {
|
|||
PAR3_COND_GT = 0x20000000,
|
||||
PAR3_COND_ULT = 0x28000000,
|
||||
PAR3_COND_UGT = 0x30000000,
|
||||
PAR3_COND_LAND = 0x38000000,
|
||||
PAR3_COND_AND = 0x38000000,
|
||||
};
|
||||
|
||||
enum GBAActionReplay3Width {
|
||||
|
|
|
@ -132,8 +132,8 @@ static bool _addPAR3Cond(struct GBACheatSet* cheats, uint32_t op1, uint32_t op2)
|
|||
case PAR3_COND_UGT:
|
||||
cheat->type = CHEAT_IF_UGT;
|
||||
break;
|
||||
case PAR3_COND_LAND:
|
||||
cheat->type = CHEAT_IF_LAND;
|
||||
case PAR3_COND_AND:
|
||||
cheat->type = CHEAT_IF_AND;
|
||||
break;
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue