diff options
| author | 2022-01-25 16:15:27 -0500 | |
|---|---|---|
| committer | 2022-01-25 16:15:27 -0500 | |
| commit | 306b3491c4dcab8bcba732c8aa387b20583d8904 (patch) | |
| tree | c2eddc0b01689567c9abfd11f11d997a4f8b482f /src/input_common/drivers/udp_client.h | |
| parent | Merge pull request #7771 from lioncash/assert (diff) | |
| parent | input_common/udp_client: Replace deprecated from_string()/to_ulong() functions (diff) | |
| download | yuzu-306b3491c4dcab8bcba732c8aa387b20583d8904.tar.gz yuzu-306b3491c4dcab8bcba732c8aa387b20583d8904.tar.xz yuzu-306b3491c4dcab8bcba732c8aa387b20583d8904.zip | |
Merge pull request #7773 from lioncash/udp-deprecated
input_common/udp_client: Replace deprecated from_string()/to_ulong() functions
Diffstat (limited to 'src/input_common/drivers/udp_client.h')
| -rw-r--r-- | src/input_common/drivers/udp_client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/drivers/udp_client.h b/src/input_common/drivers/udp_client.h index 61a1fff37..30d7c2682 100644 --- a/src/input_common/drivers/udp_client.h +++ b/src/input_common/drivers/udp_client.h | |||
| @@ -145,8 +145,8 @@ private: | |||
| 145 | void OnPortInfo(Response::PortInfo); | 145 | void OnPortInfo(Response::PortInfo); |
| 146 | void OnPadData(Response::PadData, std::size_t client); | 146 | void OnPadData(Response::PadData, std::size_t client); |
| 147 | void StartCommunication(std::size_t client, const std::string& host, u16 port); | 147 | void StartCommunication(std::size_t client, const std::string& host, u16 port); |
| 148 | const PadIdentifier GetPadIdentifier(std::size_t pad_index) const; | 148 | PadIdentifier GetPadIdentifier(std::size_t pad_index) const; |
| 149 | const Common::UUID GetHostUUID(const std::string host) const; | 149 | Common::UUID GetHostUUID(const std::string& host) const; |
| 150 | 150 | ||
| 151 | Common::Input::ButtonNames GetUIButtonName(const Common::ParamPackage& params) const; | 151 | Common::Input::ButtonNames GetUIButtonName(const Common::ParamPackage& params) const; |
| 152 | 152 | ||