diff --git a/pcsx2/MultitapProtocol.cpp b/pcsx2/MultitapProtocol.cpp index 0d4a72b3c4..0223887b0c 100644 --- a/pcsx2/MultitapProtocol.cpp +++ b/pcsx2/MultitapProtocol.cpp @@ -37,7 +37,7 @@ void MultitapProtocol::Select() MT_LOG.WriteLn("%s", __FUNCTION__); const u8 newSlot = fifoIn.front(); fifoIn.pop_front(); - const bool isInBounds = (newSlot >= 0 && newSlot < SIO::SLOTS); + const bool isInBounds = (newSlot < SIO::SLOTS); if (isInBounds) {