missed this one previously. - pause when inactive fix.
This commit is contained in:
parent
c60b3f4e44
commit
c2ec406870
|
@ -563,6 +563,14 @@ void MainWnd::OnUpdateOptionsEmulatorSynchronize(CCmdUI* pCmdUI)
|
||||||
pCmdUI->SetCheck(synchronize);
|
pCmdUI->SetCheck(synchronize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWnd::OnOptionsEmulatorPausewheninactive()
|
||||||
|
{
|
||||||
|
theApp.pauseWhenInactive = !theApp.pauseWhenInactive;
|
||||||
|
void MainWnd::OnUpdateOptionsEmulatorPausewheninactive(CCmdUI* pCmdUI)
|
||||||
|
{
|
||||||
|
pCmdUI->SetCheck(theApp.pauseWhenInactive);
|
||||||
|
}
|
||||||
|
|
||||||
void MainWnd::OnOptionsEmulatorSpeeduptoggle()
|
void MainWnd::OnOptionsEmulatorSpeeduptoggle()
|
||||||
{
|
{
|
||||||
theApp.speedupToggle = !theApp.speedupToggle;
|
theApp.speedupToggle = !theApp.speedupToggle;
|
||||||
|
|
Loading…
Reference in New Issue