mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
replace all instances of wxString with std::string in all cases not
directly involved in either the GUI or other wxWidget classes like wxFile
This commit is contained in:
parent
b1894ac6cb
commit
8ac226ae69
124 changed files with 1716 additions and 1502 deletions
|
@ -120,10 +120,10 @@ bool TROPUSRLoader::Save(const std::string& filepath)
|
|||
|
||||
bool TROPUSRLoader::Generate(const std::string& filepath, const std::string& configpath)
|
||||
{
|
||||
wxString path;
|
||||
std::string path;
|
||||
wxXmlDocument doc;
|
||||
Emu.GetVFS().GetDevice(configpath.c_str(), path);
|
||||
doc.Load(path);
|
||||
doc.Load(fmt::FromUTF8(path));
|
||||
|
||||
m_table4.clear();
|
||||
m_table6.clear();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue