diff options
author | bunnei <bunneidev@gmail.com> | 2020-11-24 05:50:35 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2020-11-24 05:50:35 +0100 |
commit | 7fb7540d69a75c70971324bc36492ee81d72de3b (patch) | |
tree | 9d9fd5a153647b40e26b6dc2d04bf4570c7db78c /src/input_common/udp | |
parent | Fix warnings in core/frontend/input.h with [[maybe_unused]] (diff) | |
download | yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar.gz yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar.bz2 yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar.lz yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar.xz yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.tar.zst yuzu-7fb7540d69a75c70971324bc36492ee81d72de3b.zip |
Diffstat (limited to 'src/input_common/udp')
-rw-r--r-- | src/input_common/udp/client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input_common/udp/client.cpp b/src/input_common/udp/client.cpp index 10b07d338..c0bb90048 100644 --- a/src/input_common/udp/client.cpp +++ b/src/input_common/udp/client.cpp @@ -189,11 +189,11 @@ void Client::ReloadSocket(const std::string& host, u16 port, std::size_t pad_ind StartCommunication(client, host, port, pad_index, client_id); } -void Client::OnVersion(Response::Version data) { +void Client::OnVersion([[maybe_unused]] Response::Version data) { LOG_TRACE(Input, "Version packet received: {}", data.version); } -void Client::OnPortInfo(Response::PortInfo data) { +void Client::OnPortInfo([[maybe_unused]] Response::PortInfo data) { LOG_TRACE(Input, "PortInfo packet received: {}", data.model); } |