From d99b1f581f2340086143aed4d1d7976f8609d80d Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 8 Oct 2018 22:44:14 +0200 Subject: [PATCH] NWM_UDS: Signal bind_node_event in Unbind (#4321) --- src/core/hle/service/nwm/nwm_uds.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/hle/service/nwm/nwm_uds.cpp b/src/core/hle/service/nwm/nwm_uds.cpp index 437c9d321..fe9d09b98 100644 --- a/src/core/hle/service/nwm/nwm_uds.cpp +++ b/src/core/hle/service/nwm/nwm_uds.cpp @@ -871,6 +871,8 @@ void NWM_UDS::Unbind(Kernel::HLERequestContext& ctx) { }); if (itr != channel_data.end()) { + // TODO(B3N30): Check out what Unbind does if the bind_node_id wasn't in the map + itr->second.event->Signal(); channel_data.erase(itr); }