summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2020-03-04 03:52:06 +0100
committerJames Rowe <jroweboy@gmail.com>2020-03-04 03:52:16 +0100
commit2cdda8c564eba94f0291160567aba7204f855242 (patch)
treeab4aa4ee00065802f95ab51dbe667c6af531d44c
parentMerge pull request #3464 from FernandoS27/jit-fix (diff)
downloadyuzu-2cdda8c564eba94f0291160567aba7204f855242.tar
yuzu-2cdda8c564eba94f0291160567aba7204f855242.tar.gz
yuzu-2cdda8c564eba94f0291160567aba7204f855242.tar.bz2
yuzu-2cdda8c564eba94f0291160567aba7204f855242.tar.lz
yuzu-2cdda8c564eba94f0291160567aba7204f855242.tar.xz
yuzu-2cdda8c564eba94f0291160567aba7204f855242.tar.zst
yuzu-2cdda8c564eba94f0291160567aba7204f855242.zip
-rw-r--r--src/input_common/udp/protocol.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/input_common/udp/protocol.cpp b/src/input_common/udp/protocol.cpp
index a982ac49d..5e50bd612 100644
--- a/src/input_common/udp/protocol.cpp
+++ b/src/input_common/udp/protocol.cpp
@@ -31,7 +31,6 @@ namespace Response {
*/
std::optional<Type> Validate(u8* data, std::size_t size) {
if (size < sizeof(Header)) {
- LOG_DEBUG(Input, "Invalid UDP packet received");
return std::nullopt;
}
Header header{};