mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 14:45:41 +12:00
Fix NWM::UDS error message
This commit is contained in:
parent
46cf049e3b
commit
603a42fb55
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ void NwmUdsService::handleSyncRequest(u32 messagePointer) {
|
|||
|
||||
switch (command) {
|
||||
case NWMCommands::InitializeWithVersion: initializeWithVersion(messagePointer); break;
|
||||
default: Helpers::panic("LCD service requested. Command: %08X\n", command);
|
||||
default: Helpers::panic("NWM::UDS service requested. Command: %08X\n", command);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -40,4 +40,4 @@ void NwmUdsService::initializeWithVersion(u32 messagePointer) {
|
|||
mem.write32(messagePointer + 4, Result::Success);
|
||||
mem.write32(messagePointer + 8, 0);
|
||||
mem.write32(messagePointer + 12, eventHandle.value());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue