mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-16 05:42:55 +00:00
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:
parent
c5ecd627ce
commit
3116a7ea1b
@ -547,6 +547,12 @@ void CFrame::DoOpen(bool Boot)
|
|||||||
if (!fileChosen)
|
if (!fileChosen)
|
||||||
return;
|
return;
|
||||||
BootManager::BootCore(std::string(path.mb_str()));
|
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
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user