get rid of fmt dependency since we are on C++23

This commit is contained in:
irisz64
2025-07-22 11:30:37 +02:00
parent 9b169825ee
commit 8549d5a21c
173 changed files with 452 additions and 83654 deletions

View File

@@ -539,7 +539,7 @@ void Cop1::cfc1(const u32 instr) {
val = fcr31.read();
break;
default:
Util::panic("Undefined CFC1 with rd != 0 or 31");
panic("Undefined CFC1 with rd != 0 or 31");
}
regs.Write(RT(instr), val);
}
@@ -587,7 +587,7 @@ void Cop1::ctc1(const u32 instr) {
}
break;
default:
Util::panic("Undefined CTC1 with rd != 0 or 31");
panic("Undefined CTC1 with rd != 0 or 31");
}
}