Return and not break, ops

This commit is contained in:
irisz64
2025-09-01 09:24:20 +02:00
parent b0e65ce0aa
commit e795c256f2

View File

@@ -328,8 +328,8 @@ void Interpreter::Exec(const Instruction instr) {
break;
default:
panic("Undefined BC COP1 {:02X}", instr.cop_rt());
}
break;
}
return;
}
regs.cop1.decode(instr);
break;