From 603a42fb550acd4a2e296b510d0642461ff28f02 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sun, 10 Sep 2023 23:36:38 +0300 Subject: [PATCH] Fix NWM::UDS error message --- src/core/services/nwm_uds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/services/nwm_uds.cpp b/src/core/services/nwm_uds.cpp index c9af393b..9c0ef95f 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 +}