Remove feature where `Emulation` > `Pause` cancels a seek in progress

This commit is contained in:
YoshiRulz 2022-01-17 13:29:11 +10:00
parent 3ef7279429
commit 4e5f0da800
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 12 deletions

View File

@ -618,18 +618,7 @@ namespace BizHawk.Client.EmuHawk
private void PauseMenuItem_Click(object sender, EventArgs e)
{
if (IsTurboSeeking || IsSeeking)
{
PauseOnFrame = null;
}
else if (EmulatorPaused)
{
UnpauseEmulator();
}
else
{
PauseEmulator();
}
TogglePause();
}
private void PowerMenuItem_Click(object sender, EventArgs e)