Taseditor: Alt + middle mouse button = Restore Playback
This commit is contained in:
parent
4af370ae10
commit
716a9c5df3
|
@ -299,6 +299,10 @@ void PLAYBACK::MiddleButtonClick()
|
||||||
int selection_beginning = selection.GetCurrentSelectionBeginning();
|
int selection_beginning = selection.GetCurrentSelectionBeginning();
|
||||||
if (selection_beginning > currFrameCounter)
|
if (selection_beginning > currFrameCounter)
|
||||||
SeekingStart(selection_beginning + 1);
|
SeekingStart(selection_beginning + 1);
|
||||||
|
} else if (GetAsyncKeyState(VK_MENU) < 0)
|
||||||
|
{
|
||||||
|
// if Alt is held, Restore Playback
|
||||||
|
RestorePosition();
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
UnpauseEmulation();
|
UnpauseEmulation();
|
||||||
|
|
Loading…
Reference in New Issue