summaryrefslogtreecommitdiff
path: root/src/input_common/udp/client.h
diff options
context:
space:
mode:
authorGravatar FearlessTobi2019-11-03 08:07:04 +0100
committerGravatar FearlessTobi2020-01-23 20:55:26 +0100
commitbbd85a495a3576a5ec99cd69b54e983653b38ea4 (patch)
treea9dbc8ebf61179a1ed27f004ab56e767b75bd315 /src/input_common/udp/client.h
parentAddress review comments (diff)
downloadyuzu-bbd85a495a3576a5ec99cd69b54e983653b38ea4.tar.gz
yuzu-bbd85a495a3576a5ec99cd69b54e983653b38ea4.tar.xz
yuzu-bbd85a495a3576a5ec99cd69b54e983653b38ea4.zip
Address second part of review comments
Diffstat (limited to '')
-rw-r--r--src/input_common/udp/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/udp/client.h b/src/input_common/udp/client.h
index b06a3f85a..0b21f4da6 100644
--- a/src/input_common/udp/client.h
+++ b/src/input_common/udp/client.h
@@ -18,8 +18,8 @@
18 18
19namespace InputCommon::CemuhookUDP { 19namespace InputCommon::CemuhookUDP {
20 20
21static constexpr u16 DEFAULT_PORT = 26760; 21constexpr u16 DEFAULT_PORT = 26760;
22static constexpr const char* DEFAULT_ADDR = "127.0.0.1"; 22constexpr char DEFAULT_ADDR[] = "127.0.0.1";
23 23
24class Socket; 24class Socket;
25 25