Separate user and dev builds

This commit is contained in:
wheremyfoodat 2023-07-02 22:36:45 +03:00
parent cba1b9f39b
commit 0b2ff6c5c8
9 changed files with 50 additions and 18 deletions

View file

@ -16,7 +16,10 @@ void CECDService::handleSyncRequest(u32 messagePointer) {
const u32 command = mem.read32(messagePointer);
switch (command) {
case CECDCommands::GetInfoEventHandle: getInfoEventHandle(messagePointer); break;
default: Helpers::panic("CECD service requested. Command: %08X\n", command);
default:
Helpers::panicDev("CECD service requested. Command: %08X\n", command);
mem.write32(messagePointer + 4, Result::Success);
break;
}
}