mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +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
|
|
@ -2,7 +2,7 @@
|
|||
#include "Utilities/Log.h"
|
||||
#include "VHDDManager.h"
|
||||
#include "TextInputDialog.h"
|
||||
#include "Ini.h"
|
||||
#include "Emu/state.h"
|
||||
#include <wx/busyinfo.h>
|
||||
|
||||
VHDDListDropTarget::VHDDListDropTarget(wxListView* parent) : m_parent(parent)
|
||||
|
|
@ -527,7 +527,7 @@ void VHDDManagerDialog::OnOk(wxCommandEvent& event)
|
|||
|
||||
void VHDDManagerDialog::LoadPaths()
|
||||
{
|
||||
IniEntry<int> path_count;
|
||||
/*IniEntry<int> path_count;
|
||||
path_count.Init("path_count", "HDDManager");
|
||||
size_t count = 0;
|
||||
count = path_count.LoadValue(count);
|
||||
|
|
@ -537,12 +537,12 @@ void VHDDManagerDialog::LoadPaths()
|
|||
IniEntry<std::string> path_entry;
|
||||
path_entry.Init(fmt::format("path[%d]", i), "HDDManager");
|
||||
m_paths.emplace_back(path_entry.LoadValue(""));
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
void VHDDManagerDialog::SavePaths()
|
||||
{
|
||||
IniEntry<int> path_count;
|
||||
/*IniEntry<int> path_count;
|
||||
path_count.Init("path_count", "HDDManager");
|
||||
path_count.SaveValue(m_paths.size());
|
||||
|
||||
|
|
@ -551,5 +551,5 @@ void VHDDManagerDialog::SavePaths()
|
|||
IniEntry<std::string> path_entry;
|
||||
path_entry.Init(fmt::format("path[%d]", i), "HDDManager");
|
||||
path_entry.SaveValue(m_paths[i]);
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue