missed this one previously. - pause when inactive fix.

This commit is contained in:
squall-leonhart 2009-03-23 16:56:15 +00:00
parent c60b3f4e44
commit c2ec406870
1 changed files with 8 additions and 0 deletions

View File

@ -563,6 +563,14 @@ void MainWnd::OnUpdateOptionsEmulatorSynchronize(CCmdUI* pCmdUI)
pCmdUI->SetCheck(synchronize);
}
void MainWnd::OnOptionsEmulatorPausewheninactive()
{
theApp.pauseWhenInactive = !theApp.pauseWhenInactive;
void MainWnd::OnUpdateOptionsEmulatorPausewheninactive(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(theApp.pauseWhenInactive);
}
void MainWnd::OnOptionsEmulatorSpeeduptoggle()
{
theApp.speedupToggle = !theApp.speedupToggle;