TAStudio - Ctrl+Up and Ctrl+Down hotkeys for previous and next frame

This commit is contained in:
adelikat 2014-07-25 01:02:24 +00:00
parent a3914e84a4
commit c82db1384f
1 changed files with 8 additions and 0 deletions

View File

@ -312,6 +312,14 @@ namespace BizHawk.Client.EmuHawk
{
GoToNextMarker();
}
else if (e.Control && !e.Shift && !e.Alt && e.KeyCode == Keys.Up) // Ctrl + Up
{
GoToPreviousFrame();
}
else if (e.Control && !e.Shift && !e.Alt && e.KeyCode == Keys.Down) // Ctrl + Down
{
GoToNextFrame();
}
}
#endregion