mirror of https://github.com/stella-emu/stella.git
Fixed stepping forward faster than stepping back
This commit is contained in:
parent
4578be499d
commit
61f5b1aa2a
|
@ -1042,7 +1042,7 @@ void MovieCart::updateTransport()
|
|||
if(myMode == Mode::Time)
|
||||
{
|
||||
if(myInputs.right && !myLastInputs.right)
|
||||
step = 3;
|
||||
step = 1;
|
||||
else if(myInputs.left && !myLastInputs.left)
|
||||
step = -3;
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue