diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 23:09:09 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 23:09:09 -0400 |
commit | 17b9c1e1715a16bebcdd92c02ce7f7e503212462 (patch) | |
tree | c469af455cf7905dc7e5ab3cac0fb7f30ca3455c /src/yuzu/configuration/configure_per_game.cpp | |
parent | 2911988b852ec29016780aabb1f46e2d0c231744 (diff) |
common,qt-config: Remove usage of forward_list
Diffstat (limited to 'src/yuzu/configuration/configure_per_game.cpp')
-rw-r--r-- | src/yuzu/configuration/configure_per_game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_per_game.cpp b/src/yuzu/configuration/configure_per_game.cpp index cee8e726d..cd8b3012e 100644 --- a/src/yuzu/configuration/configure_per_game.cpp +++ b/src/yuzu/configuration/configure_per_game.cpp @@ -44,7 +44,7 @@ ConfigurePerGame::ConfigurePerGame(QWidget* parent, u64 title_id_, const std::st : QDialog(parent), ui(std::make_unique<Ui::ConfigurePerGame>()), title_id{title_id_}, system{system_}, builder{std::make_unique<ConfigurationShared::Builder>(this, !system_.IsPoweredOn())}, - tab_group{std::make_shared<std::forward_list<ConfigurationShared::Tab*>>()} { + tab_group{std::make_shared<std::vector<ConfigurationShared::Tab*>>()} { const auto file_path = std::filesystem::path(Common::FS::ToU8String(file_name)); const auto config_file_name = title_id == 0 ? Common::FS::PathToUTF8String(file_path.filename()) : fmt::format("{:016X}", title_id); |