get rid of fmt dependency since we are on C++23
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user