mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-02 05:16:19 +12:00
GSP: Warn on unimplemented service calls instead of panicking (#765)
This commit is contained in:
parent
ce356c6e61
commit
1ecff4c3af
1 changed files with 4 additions and 1 deletions
|
@ -66,7 +66,10 @@ void GPUService::handleSyncRequest(u32 messagePointer) {
|
|||
case ServiceCommands::WriteHwRegs: writeHwRegs(messagePointer); break;
|
||||
case ServiceCommands::WriteHwRegsWithMask: writeHwRegsWithMask(messagePointer); break;
|
||||
case ServiceCommands::InvalidateDataCache: invalidateDataCache(messagePointer); break;
|
||||
default: Helpers::panic("GPU service requested. Command: %08X\n", command);
|
||||
default:
|
||||
Helpers::warn("GPU service requested. Command: %08X\n", command);
|
||||
mem.write32(messagePointer + 4, Result::Success);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue