diff options
author | Lioncash <mathew1800@gmail.com> | 2022-01-24 17:00:58 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-01-24 17:14:30 +0100 |
commit | 87eb3cb0831139605bcf098c3324ed701881ec42 (patch) | |
tree | 430d46b870f6b53e56dcf93fe787bf6a4cb79814 /src/input_common/drivers | |
parent | input_common/udp_client: Prevent unnecessary string copies (diff) | |
download | yuzu-87eb3cb0831139605bcf098c3324ed701881ec42.tar yuzu-87eb3cb0831139605bcf098c3324ed701881ec42.tar.gz yuzu-87eb3cb0831139605bcf098c3324ed701881ec42.tar.bz2 yuzu-87eb3cb0831139605bcf098c3324ed701881ec42.tar.lz yuzu-87eb3cb0831139605bcf098c3324ed701881ec42.tar.xz yuzu-87eb3cb0831139605bcf098c3324ed701881ec42.tar.zst yuzu-87eb3cb0831139605bcf098c3324ed701881ec42.zip |
Diffstat (limited to 'src/input_common/drivers')
-rw-r--r-- | src/input_common/drivers/udp_client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/drivers/udp_client.cpp b/src/input_common/drivers/udp_client.cpp index 8f27435a8..d1cdb1ab2 100644 --- a/src/input_common/drivers/udp_client.cpp +++ b/src/input_common/drivers/udp_client.cpp @@ -349,8 +349,8 @@ PadIdentifier UDPClient::GetPadIdentifier(std::size_t pad_index) const { } Common::UUID UDPClient::GetHostUUID(const std::string& host) const { - const auto ip = boost::asio::ip::address_v4::from_string(host); - const auto hex_host = fmt::format("{:06x}", ip.to_ulong()); + const auto ip = boost::asio::ip::make_address_v4(host); + const auto hex_host = fmt::format("{:06x}", ip.to_uint()); return Common::UUID{hex_host}; } |