Harry Tuttle's change to Harley gear shift to use a single bit instead of two (no detectable difference in behavior, though)

This commit is contained in:
Bart Trzynadlowski 2017-04-07 04:30:27 +00:00
parent 205282a758
commit 4ca7d5ef0e

View file

@ -335,9 +335,9 @@ UINT8 CModel3::ReadInputs(unsigned reg)
if ((m_game.inputs & Game::INPUT_HARLEY)) if ((m_game.inputs & Game::INPUT_HARLEY))
{ {
if (Inputs->gearShiftUp->value) // Shift up if (Inputs->gearShiftUp->value) // Shift up
data &= ~0x60; data &= ~0x20;
else if (Inputs->gearShiftDown->value) // Shift down else if (Inputs->gearShiftDown->value) // Shift down
data &= ~0x50; data &= ~0x10;
} }
else else
{ {