diff options
| author | 2017-03-25 14:21:31 -0500 | |
|---|---|---|
| committer | 2017-03-26 08:17:56 -0500 | |
| commit | 0ae6d8be5b04739fb7ef16320adf7b96ba122ebd (patch) | |
| tree | 7f87caf470db909c0a55b2cb5b97a584d8539f2f | |
| parent | Services/UDS: Do not allow trying to start up a network that only the host ca... (diff) | |
| download | yuzu-0ae6d8be5b04739fb7ef16320adf7b96ba122ebd.tar.gz yuzu-0ae6d8be5b04739fb7ef16320adf7b96ba122ebd.tar.xz yuzu-0ae6d8be5b04739fb7ef16320adf7b96ba122ebd.zip | |
Services/UDS: Signal the connection event when closing down the network.
| -rw-r--r-- | src/core/hle/service/nwm/nwm_uds.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/nwm/nwm_uds.cpp b/src/core/hle/service/nwm/nwm_uds.cpp index 1d5b298a2..e1bf49393 100644 --- a/src/core/hle/service/nwm/nwm_uds.cpp +++ b/src/core/hle/service/nwm/nwm_uds.cpp | |||
| @@ -297,6 +297,7 @@ static void DestroyNetwork(Interface* self) { | |||
| 297 | CoreTiming::UnscheduleEvent(beacon_broadcast_event, 0); | 297 | CoreTiming::UnscheduleEvent(beacon_broadcast_event, 0); |
| 298 | 298 | ||
| 299 | connection_status.status = static_cast<u8>(NetworkStatus::NotConnected); | 299 | connection_status.status = static_cast<u8>(NetworkStatus::NotConnected); |
| 300 | connection_status_event->Signal(); | ||
| 300 | 301 | ||
| 301 | IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); | 302 | IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |
| 302 | 303 | ||