mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
Qt: Replace QMap with std::map
This should reduce the amount of string conversions during list refreshes
This commit is contained in:
parent
c68f42e0ee
commit
2262ac1684
32 changed files with 108 additions and 84 deletions
|
@ -581,7 +581,7 @@ void Emulator::Init()
|
|||
fs::write_file(games_common_dir + "/Disc Games Can Be Put Here For Automatic Detection.txt", fs::create + fs::excl + fs::write, ""s);
|
||||
|
||||
#ifdef _WIN32
|
||||
if (std::string rpcs3_shortcuts = games_common_dir + "/shortcuts"; make_path_verbose(rpcs3_shortcuts, false))
|
||||
if (const std::string rpcs3_shortcuts = games_common_dir + "/shortcuts"; make_path_verbose(rpcs3_shortcuts, false))
|
||||
{
|
||||
fs::write_file(rpcs3_shortcuts + "/Copyable Shortcuts For Installed Games Would Be Added Here.txt", fs::create + fs::excl + fs::write, ""s);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue