Ignore the File Open command if a game is running

This commit is contained in:
skidau 2015-02-28 15:57:41 +11:00
parent 679d9351ea
commit d080632527
1 changed files with 2 additions and 1 deletions

View File

@ -686,6 +686,7 @@ void CFrame::BootGame(const std::string& filename)
// Open file to boot
void CFrame::OnOpen(wxCommandEvent& WXUNUSED (event))
{
if (Core::GetState() == Core::CORE_UNINITIALIZED)
DoOpen(true);
}