Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat committed Sep 10, 2023
2 parents 4b8f7f5 + f512676 commit 981ade9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/services/nwm_uds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand All @@ -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());
}
}

0 comments on commit 981ade9

Please sign in to comment.