diff options
author | Lioncash <mathew1800@gmail.com> | 2020-02-03 15:15:30 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-02-03 15:15:32 +0100 |
commit | 881408445a3e4a22734f6ccfdf7f96575fa249d3 (patch) | |
tree | 8cd62447d74c59e7ea1775493c036fc59c6743b2 | |
parent | input_common/udp: Remove unnecessary inclusions (diff) | |
download | yuzu-881408445a3e4a22734f6ccfdf7f96575fa249d3.tar yuzu-881408445a3e4a22734f6ccfdf7f96575fa249d3.tar.gz yuzu-881408445a3e4a22734f6ccfdf7f96575fa249d3.tar.bz2 yuzu-881408445a3e4a22734f6ccfdf7f96575fa249d3.tar.lz yuzu-881408445a3e4a22734f6ccfdf7f96575fa249d3.tar.xz yuzu-881408445a3e4a22734f6ccfdf7f96575fa249d3.tar.zst yuzu-881408445a3e4a22734f6ccfdf7f96575fa249d3.zip |
Diffstat (limited to '')
-rw-r--r-- | src/input_common/udp/client.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/input_common/udp/client.cpp b/src/input_common/udp/client.cpp index 5f5a9989c..7d6b0478e 100644 --- a/src/input_common/udp/client.cpp +++ b/src/input_common/udp/client.cpp @@ -31,10 +31,9 @@ public: explicit Socket(const std::string& host, u16 port, u8 pad_index, u32 client_id, SocketCallback callback) - : client_id(client_id), timer(io_service), - send_endpoint(udp::endpoint(address_v4::from_string(host), port)), - socket(io_service, udp::endpoint(udp::v4(), 0)), pad_index(pad_index), - callback(std::move(callback)) {} + : callback(std::move(callback)), timer(io_service), + socket(io_service, udp::endpoint(udp::v4(), 0)), client_id(client_id), + pad_index(pad_index), send_endpoint(udp::endpoint(address_v4::from_string(host), port)) {} void Stop() { io_service.stop(); |