From e339d169c51d29e2de5d5dad771fcdf742e60bda Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 12 Jul 2018 22:10:05 -0400 Subject: [PATCH] Ensures the joystick doesn't obstruct tape input. --- Machines/MSX/MSX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/MSX/MSX.cpp b/Machines/MSX/MSX.cpp index f013f4c83..0df6f2b31 100644 --- a/Machines/MSX/MSX.cpp +++ b/Machines/MSX/MSX.cpp @@ -78,7 +78,7 @@ class AYPortHandler: public GI::AY38910::PortHandler { // Bit 6: keyboard switch (not universal) // Bit 7: tape input return - static_cast(joysticks_[selected_joystick_].get())->get_state() | + (static_cast(joysticks_[selected_joystick_].get())->get_state() & 0x3f) | 0x40 | (tape_player_.get_input() ? 0x00 : 0x80); }