mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Implemented .elf and .dol support in gamelist
Fixed a TON of structuring, formatting. removed README.txt files from themes at MaJoR's request Added platform icon for ELFs/DOLs
This commit is contained in:
@ -308,6 +308,8 @@ wxMenuBar* CFrame::CreateMenu()
|
||||
platformMenu->Check(IDM_LIST_GC, SConfig::GetInstance().m_ListGC);
|
||||
platformMenu->AppendCheckItem(IDM_LIST_WAD, _("Show Wad"));
|
||||
platformMenu->Check(IDM_LIST_WAD, SConfig::GetInstance().m_ListWad);
|
||||
platformMenu->AppendCheckItem(IDM_LIST_ELFDOL, _("Show Elf/Dol"));
|
||||
platformMenu->Check(IDM_LIST_ELFDOL, SConfig::GetInstance().m_ListElfDol);
|
||||
|
||||
wxMenu *regionMenu = new wxMenu;
|
||||
viewMenu->AppendSubMenu(regionMenu, _("Show Regions"));
|
||||
@ -1905,6 +1907,9 @@ void CFrame::GameListChanged(wxCommandEvent& event)
|
||||
case IDM_LIST_WAD:
|
||||
SConfig::GetInstance().m_ListWad = event.IsChecked();
|
||||
break;
|
||||
case IDM_LIST_ELFDOL:
|
||||
SConfig::GetInstance().m_ListElfDol = event.IsChecked();
|
||||
break;
|
||||
case IDM_LIST_JAP:
|
||||
SConfig::GetInstance().m_ListJap = event.IsChecked();
|
||||
break;
|
||||
|
Reference in New Issue
Block a user