mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Start of Iso list caching. its off on default but can be changed in the options/ini
also, the banners get saved as png's in the Gameini folder. they dont delete on their own you'll have to do that for now ;_; git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1052 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -169,7 +169,7 @@ CFrame::CFrame(wxFrame* parent,
|
||||
|
||||
CPluginManager::GetInstance().ScanForPlugins(this);
|
||||
|
||||
m_GameListCtrl->Update();
|
||||
m_GameListCtrl->Update(SConfig::GetInstance().m_LocalCoreStartupParameter.bEnableIsoCache);
|
||||
|
||||
//sizerPanel->SetSizeHints(m_Panel);
|
||||
|
||||
@ -447,7 +447,7 @@ void CFrame::OnRefresh(wxCommandEvent& WXUNUSED (event))
|
||||
{
|
||||
if (m_GameListCtrl)
|
||||
{
|
||||
m_GameListCtrl->Update();
|
||||
m_GameListCtrl->Update(false);
|
||||
}
|
||||
}
|
||||
|
||||
@ -457,7 +457,7 @@ void CFrame::OnConfigMain(wxCommandEvent& WXUNUSED (event))
|
||||
CConfigMain ConfigMain(this);
|
||||
ConfigMain.ShowModal();
|
||||
if (ConfigMain.bRefreshList)
|
||||
m_GameListCtrl->Update();
|
||||
m_GameListCtrl->Update(true);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user