diff options
author | Sebastian Valle <subv2112@gmail.com> | 2017-03-27 20:08:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-27 20:08:26 +0200 |
commit | 5c4bd3ef33a3e660119686a9b7160c08454666a0 (patch) | |
tree | a7d0ef6a3b9724cb91670d2e75a2c7347dafac6b /src | |
parent | Services/UDS: Use consistent spelling for WiFi and simplify the GetChannel function. (diff) | |
download | yuzu-5c4bd3ef33a3e660119686a9b7160c08454666a0.tar yuzu-5c4bd3ef33a3e660119686a9b7160c08454666a0.tar.gz yuzu-5c4bd3ef33a3e660119686a9b7160c08454666a0.tar.bz2 yuzu-5c4bd3ef33a3e660119686a9b7160c08454666a0.tar.lz yuzu-5c4bd3ef33a3e660119686a9b7160c08454666a0.tar.xz yuzu-5c4bd3ef33a3e660119686a9b7160c08454666a0.tar.zst yuzu-5c4bd3ef33a3e660119686a9b7160c08454666a0.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/nwm/nwm_uds.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/nwm/nwm_uds.cpp b/src/core/hle/service/nwm/nwm_uds.cpp index f56925fee..ef6c5ebe3 100644 --- a/src/core/hle/service/nwm/nwm_uds.cpp +++ b/src/core/hle/service/nwm/nwm_uds.cpp @@ -320,8 +320,7 @@ static void GetChannel(Interface* self) { IPC::RequestParser rp(Kernel::GetCommandBuffer(), 0x1A, 0, 0); IPC::RequestBuilder rb = rp.MakeBuilder(2, 0); - bool is_connected = connection_status.status != - static_cast<u32>(NetworkStatus::NotConnected); + bool is_connected = connection_status.status != static_cast<u32>(NetworkStatus::NotConnected); u8 channel = is_connected ? network_channel : 0; |