diff --git a/src/core/services/nwm_uds.cpp b/src/core/services/nwm_uds.cpp index c9af393b2..9c0ef95f1 100644 --- a/src/core/services/nwm_uds.cpp +++ b/src/core/services/nwm_uds.cpp @@ -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()); -} \ No newline at end of file +}