mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
update Cheat files
This commit is contained in:
parent
9ab8c1e433
commit
cbfd634a4b
217 changed files with 2263 additions and 1880 deletions
|
@ -299,7 +299,7 @@ void MappingWindow::OnLoadProfilePressed()
|
|||
|
||||
const QString profile_path = m_profiles_combo->currentData().toString();
|
||||
|
||||
IniFile ini;
|
||||
Common::IniFile ini;
|
||||
ini.Load(profile_path.toStdString());
|
||||
|
||||
m_controller->LoadConfig(ini.GetOrCreateSection("Profile"));
|
||||
|
@ -322,7 +322,7 @@ void MappingWindow::OnSaveProfilePressed()
|
|||
|
||||
File::CreateFullPath(profile_path);
|
||||
|
||||
IniFile ini;
|
||||
Common::IniFile ini;
|
||||
|
||||
m_controller->SaveConfig(ini.GetOrCreateSection("Profile"));
|
||||
ini.Save(profile_path);
|
||||
|
@ -542,7 +542,7 @@ void MappingWindow::OnDefaultFieldsPressed()
|
|||
void MappingWindow::OnClearFieldsPressed()
|
||||
{
|
||||
// Loading an empty inifile section clears everything.
|
||||
IniFile::Section sec;
|
||||
Common::IniFile::Section sec;
|
||||
|
||||
// Keep the currently selected device.
|
||||
const auto default_device = m_controller->GetDefaultDevice();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue