From 0ae66d3e24d31984f7285383ef7dcdd5bb74ea8f Mon Sep 17 00:00:00 2001 From: RedPanda4552 Date: Wed, 26 Jul 2023 09:53:41 -0400 Subject: [PATCH] Pad: Set data low when no pad present Fixes uLaunchELF spinning waiting for second pad to come online. --- pcsx2/SIO/Pad/PadNotConnected.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/SIO/Pad/PadNotConnected.cpp b/pcsx2/SIO/Pad/PadNotConnected.cpp index e9cfc9a0a8..5d40afc94e 100644 --- a/pcsx2/SIO/Pad/PadNotConnected.cpp +++ b/pcsx2/SIO/Pad/PadNotConnected.cpp @@ -127,5 +127,5 @@ u8 PadNotConnected::GetPressure(u32 index) const u8 PadNotConnected::SendCommandByte(u8 commandByte) { - return 0xff; + return 0x00; }