should fix cases where the gamelist would stay active under the render window

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5146 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman 2010-02-28 19:28:21 +00:00
parent c5ecd627ce
commit 3116a7ea1b
1 changed files with 6 additions and 0 deletions

View File

@ -547,6 +547,12 @@ void CFrame::DoOpen(bool Boot)
if (!fileChosen)
return;
BootManager::BootCore(std::string(path.mb_str()));
// Game has been started, hide the game list
if (m_GameListCtrl->IsShown())
{
m_GameListCtrl->Disable();
m_GameListCtrl->Hide();
}
}
else
{