From 5c4bd3ef33a3e660119686a9b7160c08454666a0 Mon Sep 17 00:00:00 2001 From: Sebastian Valle Date: Mon, 27 Mar 2017 13:08:26 -0500 Subject: [PATCH] Services/UDS: Fixed a style mistake in GetChannel. --- src/core/hle/service/nwm/nwm_uds.cpp | 3 +-- 1 file changed, 1 insertion(+), 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(NetworkStatus::NotConnected); + bool is_connected = connection_status.status != static_cast(NetworkStatus::NotConnected); u8 channel = is_connected ? network_channel : 0;