mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
Old ini-manager only partially used in VFS. Global configuration used as defualt.
This commit is contained in:
parent
e8ebb005fd
commit
c0255208cc
47 changed files with 328 additions and 403 deletions
|
|
@ -81,13 +81,13 @@ void LLEModulesManagerFrame::Refresh()
|
|||
|
||||
m_funcs.push_back(name);
|
||||
|
||||
IniEntry<bool> load_lib;
|
||||
load_lib.Init(name, "LLE");
|
||||
//IniEntry<bool> load_lib;
|
||||
//load_lib.Init(name, "LLE");
|
||||
|
||||
m_check_list->Check(m_check_list->Append(name +
|
||||
" v" + std::to_string((int)sprx_loader.m_sprx_module_info.version[0]) +
|
||||
"." + std::to_string((int)sprx_loader.m_sprx_module_info.version[1])),
|
||||
load_lib.LoadValue(false));
|
||||
false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -99,9 +99,9 @@ void LLEModulesManagerFrame::UpdateSelection(int index)
|
|||
if (index < 0)
|
||||
return;
|
||||
|
||||
IniEntry<bool> load_lib;
|
||||
load_lib.Init(m_funcs[index], "LLE");
|
||||
load_lib.SaveValue(m_check_list->IsChecked(index));
|
||||
//IniEntry<bool> load_lib;
|
||||
//load_lib.Init(m_funcs[index], "LLE");
|
||||
//load_lib.SaveValue(m_check_list->IsChecked(index));
|
||||
}
|
||||
|
||||
void LLEModulesManagerFrame::OnSelectAll(wxCommandEvent& WXUNUSED(event), bool is_checked)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue