diff options
Diffstat (limited to 'src/input_common')
| -rw-r--r-- | src/input_common/udp/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/udp/client.cpp b/src/input_common/udp/client.cpp index f020628eb..1fa246e79 100644 --- a/src/input_common/udp/client.cpp +++ b/src/input_common/udp/client.cpp | |||
| @@ -125,7 +125,7 @@ static void SocketLoop(Socket* socket) { | |||
| 125 | 125 | ||
| 126 | Client::Client(std::shared_ptr<DeviceStatus> status, const std::string& host, u16 port, | 126 | Client::Client(std::shared_ptr<DeviceStatus> status, const std::string& host, u16 port, |
| 127 | u8 pad_index, u32 client_id) | 127 | u8 pad_index, u32 client_id) |
| 128 | : status(status) { | 128 | : status(std::move(status)) { |
| 129 | StartCommunication(host, port, pad_index, client_id); | 129 | StartCommunication(host, port, pad_index, client_id); |
| 130 | } | 130 | } |
| 131 | 131 | ||