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); }