mirror of https://github.com/stella-emu/stella.git
Fixed stepping forward faster than stepping back
This commit is contained in:
parent
0b11658f9e
commit
d0768b0aae
|
@ -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