Fixed stepping forward faster than stepping back

This commit is contained in:
Lo Def 2021-06-11 01:02:08 -04:00 committed by Stephen Anthony
parent 0b11658f9e
commit d0768b0aae
1 changed files with 1 additions and 1 deletions

View File

@ -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