summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-03-25 20:21:31 +0100
committerSubv <subv2112@gmail.com>2017-03-26 15:17:56 +0200
commit0ae6d8be5b04739fb7ef16320adf7b96ba122ebd (patch)
tree7f87caf470db909c0a55b2cb5b97a584d8539f2f /src/core/hle
parentServices/UDS: Do not allow trying to start up a network that only the host can connect to. (diff)
downloadyuzu-0ae6d8be5b04739fb7ef16320adf7b96ba122ebd.tar
yuzu-0ae6d8be5b04739fb7ef16320adf7b96ba122ebd.tar.gz
yuzu-0ae6d8be5b04739fb7ef16320adf7b96ba122ebd.tar.bz2
yuzu-0ae6d8be5b04739fb7ef16320adf7b96ba122ebd.tar.lz
yuzu-0ae6d8be5b04739fb7ef16320adf7b96ba122ebd.tar.xz
yuzu-0ae6d8be5b04739fb7ef16320adf7b96ba122ebd.tar.zst
yuzu-0ae6d8be5b04739fb7ef16320adf7b96ba122ebd.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/nwm/nwm_uds.cpp1
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) {
CoreTiming::UnscheduleEvent(beacon_broadcast_event, 0);
connection_status.status = static_cast<u8>(NetworkStatus::NotConnected);
+ connection_status_event->Signal();
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);