diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-14 01:50:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-14 01:50:54 +0100 |
commit | ad45963b459d07d04e78f86d3316d7494730e9f9 (patch) | |
tree | a2e70a6ffad04ec840e4ff3cd581d7a4ec5853fa /src/input_common/drivers/udp_client.cpp | |
parent | Merge pull request #7576 from lioncash/tasenum (diff) | |
parent | input_engine: Fix typo in TriggerOnAxisChange() parameter name (diff) | |
download | yuzu-ad45963b459d07d04e78f86d3316d7494730e9f9.tar yuzu-ad45963b459d07d04e78f86d3316d7494730e9f9.tar.gz yuzu-ad45963b459d07d04e78f86d3316d7494730e9f9.tar.bz2 yuzu-ad45963b459d07d04e78f86d3316d7494730e9f9.tar.lz yuzu-ad45963b459d07d04e78f86d3316d7494730e9f9.tar.xz yuzu-ad45963b459d07d04e78f86d3316d7494730e9f9.tar.zst yuzu-ad45963b459d07d04e78f86d3316d7494730e9f9.zip |
Diffstat (limited to 'src/input_common/drivers/udp_client.cpp')
-rw-r--r-- | src/input_common/drivers/udp_client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_common/drivers/udp_client.cpp b/src/input_common/drivers/udp_client.cpp index fdee0f2d5..4ab991a7d 100644 --- a/src/input_common/drivers/udp_client.cpp +++ b/src/input_common/drivers/udp_client.cpp @@ -136,7 +136,7 @@ static void SocketLoop(Socket* socket) { socket->Loop(); } -UDPClient::UDPClient(const std::string& input_engine_) : InputEngine(input_engine_) { +UDPClient::UDPClient(std::string input_engine_) : InputEngine(std::move(input_engine_)) { LOG_INFO(Input, "Udp Initialization started"); ReloadSockets(); } |