mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Eliminate some netplay gamelist ugliness.
This commit is contained in:
@ -659,7 +659,7 @@ void CFrame::OnGameListCtrl_ItemActivated(wxListEvent& WXUNUSED (event))
|
||||
// 1. Boot the selected iso
|
||||
// 2. Boot the default or last loaded iso.
|
||||
// 3. Call BrowseForDirectory if the gamelist is empty
|
||||
if (!m_GameListCtrl->GetGameNames().size() &&
|
||||
if (!m_GameListCtrl->GetISO(0) &&
|
||||
!((SConfig::GetInstance().m_ListGC &&
|
||||
SConfig::GetInstance().m_ListWii &&
|
||||
SConfig::GetInstance().m_ListWad) &&
|
||||
@ -693,7 +693,7 @@ void CFrame::OnGameListCtrl_ItemActivated(wxListEvent& WXUNUSED (event))
|
||||
|
||||
m_GameListCtrl->Update();
|
||||
}
|
||||
else if (!m_GameListCtrl->GetGameNames().size())
|
||||
else if (!m_GameListCtrl->GetISO(0))
|
||||
m_GameListCtrl->BrowseForDirectory();
|
||||
else
|
||||
// Game started by double click
|
||||
|
Reference in New Issue
Block a user