Two minor fixes

This commit is contained in:
thrust26 2020-07-23 21:12:33 +02:00
parent 5f5ac95009
commit c8f71125f4
2 changed files with 2 additions and 2 deletions

View File

@ -343,8 +343,8 @@ FBInitStatus OSystem::createFrameBuffer()
case EventHandlerState::OPTIONSMENU: case EventHandlerState::OPTIONSMENU:
case EventHandlerState::CMDMENU: case EventHandlerState::CMDMENU:
case EventHandlerState::TIMEMACHINE: case EventHandlerState::TIMEMACHINE:
case EventHandlerState::PLAYBACK:
#endif #endif
case EventHandlerState::PLAYBACK:
if((fbstatus = myConsole->initializeVideo()) != FBInitStatus::Success) if((fbstatus = myConsole->initializeVideo()) != FBInitStatus::Success)
return fbstatus; return fbstatus;
break; break;

View File

@ -356,7 +356,7 @@ void TimeMachineDialog::handleKeyDown(StellaKey key, StellaMod mod, bool repeate
break; break;
default: default:
Dialog::handleKeyDown(key, mod); Dialog::handleKeyDown(key, mod, repeated);
} }
} }