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

@@ -9,7 +9,7 @@ Core::Core(CPUType cpuType) {
#ifndef __aarch64__
case DynamicRecompiler: cpu = std::make_unique<JIT>(parallel); break;
#endif
default: Util::panic("Unimplemented CPU type\n");
default: panic("Unimplemented CPU type\n");
}
}
@@ -112,7 +112,7 @@ void Core::Serialize() {
void Core::Deserialize() {
std::vector dVER(serialized[slot].begin(), serialized[slot].begin() + verSize);
if (dVER[0] != (KAIZEN_VERSION >> 8) || dVER[1] != (KAIZEN_VERSION >> 4) || dVER[2] != (KAIZEN_VERSION & 0xFF)) {
Util::panic("PROBLEMI!");
panic("PROBLEMI!");
}
cpu->GetMem().Deserialize(