From 4ca7d5ef0e340b2a45732a3bdca14ad5bee0278b Mon Sep 17 00:00:00 2001 From: Bart Trzynadlowski Date: Fri, 7 Apr 2017 04:30:27 +0000 Subject: [PATCH] Harry Tuttle's change to Harley gear shift to use a single bit instead of two (no detectable difference in behavior, though) --- Src/Model3/Model3.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Model3/Model3.cpp b/Src/Model3/Model3.cpp index 3ba4ed2..774298a 100644 --- a/Src/Model3/Model3.cpp +++ b/Src/Model3/Model3.cpp @@ -335,9 +335,9 @@ UINT8 CModel3::ReadInputs(unsigned reg) if ((m_game.inputs & Game::INPUT_HARLEY)) { if (Inputs->gearShiftUp->value) // Shift up - data &= ~0x60; + data &= ~0x20; else if (Inputs->gearShiftDown->value) // Shift down - data &= ~0x50; + data &= ~0x10; } else {