mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
Qt: Replace some instances of QMap, QPair and QList
This commit is contained in:
parent
e8f730e61f
commit
c3729d06d0
26 changed files with 126 additions and 140 deletions
|
@ -2399,7 +2399,7 @@ void main_window::ShowOptionalGamePreparations(const QString& title, const QStri
|
|||
locations.insert(gui::utils::shortcut_location::applications);
|
||||
}
|
||||
|
||||
QList<game_info> game_data;
|
||||
std::vector<game_info> game_data;
|
||||
|
||||
for (const auto& [boot_path, title_id] : paths)
|
||||
{
|
||||
|
@ -2422,7 +2422,7 @@ void main_window::ShowOptionalGamePreparations(const QString& title, const QStri
|
|||
}
|
||||
}
|
||||
|
||||
if (!game_data.isEmpty())
|
||||
if (!game_data.empty())
|
||||
{
|
||||
m_game_list_frame->BatchCreateCPUCaches(game_data);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue