From c4f6bffd9138345986ce0e340243dae7ca374510 Mon Sep 17 00:00:00 2001 From: PTRCoder Date: Sat, 24 Aug 2024 14:31:31 +0200 Subject: [PATCH] Added forgotten log message --- src/core/hle/service/nwm/nwm_uds.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/hle/service/nwm/nwm_uds.cpp b/src/core/hle/service/nwm/nwm_uds.cpp index b3fee1324..244a6c36c 100644 --- a/src/core/hle/service/nwm/nwm_uds.cpp +++ b/src/core/hle/service/nwm/nwm_uds.cpp @@ -641,6 +641,7 @@ void NWM_UDS::RecvBeaconBroadcastData(Kernel::HLERequestContext& ctx) { // Update the total size in the structure and write it to the buffer again. data_reply_header.total_size = static_cast(cur_buffer_size); + LOG_WARNING(Service_NWM, "Writing beacon reply header to buffer"); out_buffer.Write(&data_reply_header, 0, sizeof(BeaconDataReplyHeader)); IPC::RequestBuilder rb = rp.MakeBuilder(1, 2);