mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00:00
commit
1c41acaddd
11 changed files with 45 additions and 45 deletions
|
@ -639,10 +639,10 @@ void CFrame::BootGame(const std::string& filename)
|
|||
if (m_GameListCtrl->GetSelectedISO()->IsValid())
|
||||
bootfile = m_GameListCtrl->GetSelectedISO()->GetFileName();
|
||||
}
|
||||
else if (!StartUp.m_strDefaultGCM.empty() &&
|
||||
File::Exists(StartUp.m_strDefaultGCM))
|
||||
else if (!StartUp.m_strDefaultISO.empty() &&
|
||||
File::Exists(StartUp.m_strDefaultISO))
|
||||
{
|
||||
bootfile = StartUp.m_strDefaultGCM;
|
||||
bootfile = StartUp.m_strDefaultISO;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1831,7 +1831,7 @@ void CFrame::UpdateGUI()
|
|||
if (m_GameListCtrl->IsEnabled())
|
||||
{
|
||||
// Prepare to load Default ISO, enable play button
|
||||
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDefaultGCM.empty())
|
||||
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.m_strDefaultISO.empty())
|
||||
{
|
||||
if (m_ToolBar)
|
||||
m_ToolBar->EnableTool(IDM_PLAY, true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue