mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 05:08:23 +00:00
arm_dyncom: remove reference nullptr comparison (#7151)
This commit is contained in:
parent
b74c91457e
commit
222b1cc0d7
1 changed files with 0 additions and 1 deletions
|
@ -3864,7 +3864,6 @@ SUB_INST : {
|
||||||
}
|
}
|
||||||
SWI_INST : {
|
SWI_INST : {
|
||||||
if (inst_base->cond == ConditionCode::AL || CondPassed(cpu, inst_base->cond)) {
|
if (inst_base->cond == ConditionCode::AL || CondPassed(cpu, inst_base->cond)) {
|
||||||
DEBUG_ASSERT(cpu->system != nullptr);
|
|
||||||
swi_inst* const inst_cream = (swi_inst*)inst_base->component;
|
swi_inst* const inst_cream = (swi_inst*)inst_base->component;
|
||||||
cpu->system.GetRunningCore().GetTimer().AddTicks(num_instrs);
|
cpu->system.GetRunningCore().GetTimer().AddTicks(num_instrs);
|
||||||
cpu->NumInstrsToExecute =
|
cpu->NumInstrsToExecute =
|
||||||
|
|
Loading…
Reference in a new issue