Merge pull request #3982 from JosJuice/how-did-this-even-compile
DolphinWX: Fix a mix-up
This commit is contained in:
commit
3f03e2d5fe
|
@ -956,7 +956,7 @@ void CGameListCtrl::OnRightClick(wxMouseEvent& event)
|
|||
popupMenu.AppendCheckItem(IDM_SET_DEFAULT_ISO, _("Set as &default ISO"));
|
||||
|
||||
// First we have to decide a starting value when we append it
|
||||
if (platform == SConfig::GetInstance().m_strDefaultISO)
|
||||
if (selected_iso->GetFileName() == SConfig::GetInstance().m_strDefaultISO)
|
||||
popupMenu.FindItem(IDM_SET_DEFAULT_ISO)->Check();
|
||||
|
||||
popupMenu.AppendSeparator();
|
||||
|
|
Loading…
Reference in New Issue