mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-26 07:35:40 +00:00
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:
parent
205282a758
commit
4ca7d5ef0e
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue