summaryrefslogtreecommitdiffstats
path: root/src/input_common/udp/client.h
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2019-11-03 08:07:04 +0100
committerFearlessTobi <thm.frey@gmail.com>2020-01-23 20:55:26 +0100
commitbbd85a495a3576a5ec99cd69b54e983653b38ea4 (patch)
treea9dbc8ebf61179a1ed27f004ab56e767b75bd315 /src/input_common/udp/client.h
parentAddress review comments (diff)
downloadyuzu-bbd85a495a3576a5ec99cd69b54e983653b38ea4.tar
yuzu-bbd85a495a3576a5ec99cd69b54e983653b38ea4.tar.gz
yuzu-bbd85a495a3576a5ec99cd69b54e983653b38ea4.tar.bz2
yuzu-bbd85a495a3576a5ec99cd69b54e983653b38ea4.tar.lz
yuzu-bbd85a495a3576a5ec99cd69b54e983653b38ea4.tar.xz
yuzu-bbd85a495a3576a5ec99cd69b54e983653b38ea4.tar.zst
yuzu-bbd85a495a3576a5ec99cd69b54e983653b38ea4.zip
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 @@
namespace InputCommon::CemuhookUDP {
-static constexpr u16 DEFAULT_PORT = 26760;
-static constexpr const char* DEFAULT_ADDR = "127.0.0.1";
+constexpr u16 DEFAULT_PORT = 26760;
+constexpr char DEFAULT_ADDR[] = "127.0.0.1";
class Socket;