fix a bunch of warnings

This commit is contained in:
SimoneN64
2024-01-03 14:22:06 +01:00
parent 12d744500f
commit b70188fdb1
19 changed files with 108 additions and 107 deletions

View File

@@ -15,7 +15,7 @@ void Cop0::mfc0(Registers& regs, u32 instr) {
regs.gpr[RT(instr)] = s32(GetReg32(RD(instr)));
}
void Cop0::dmfc0(Registers& regs, u32 instr) {
void Cop0::dmfc0(Registers& regs, u32 instr) const {
regs.gpr[RT(instr)] = s64(GetReg64(RD(instr)));
}