Tastudio - fix exception when attempting to scroll before frame 0
This commit is contained in:
parent
69e9bc22d2
commit
907ab29aaa
|
@ -265,7 +265,10 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
else
|
||||
{
|
||||
GoToFrame(Global.Emulator.Frame - 1);
|
||||
if (Global.Emulator.Frame > 0)
|
||||
{
|
||||
GoToFrame(Global.Emulator.Frame - 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue