diff options
author | yuzubot <yuzu@yuzu-emu.org> | 2023-08-22 12:03:42 +0000 |
---|---|---|
committer | yuzubot <yuzu@yuzu-emu.org> | 2023-08-22 12:03:42 +0000 |
commit | 92d1d7e52b5fbde067ca3eb22b899ca2eb9eb9ea (patch) | |
tree | be06465023396b63ae1ad29f58f78a1f3f8dd355 /src/yuzu/configuration/configure_per_game.cpp | |
parent | df00da1760dcf336015c6e18233d293fb1fd6cf4 (diff) |
"Merge Tagged PR 11303"mainline-0-1534
Diffstat (limited to 'src/yuzu/configuration/configure_per_game.cpp')
-rw-r--r-- | src/yuzu/configuration/configure_per_game.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_per_game.cpp b/src/yuzu/configuration/configure_per_game.cpp index cd8b3012e8..4f9e8db083 100644 --- a/src/yuzu/configuration/configure_per_game.cpp +++ b/src/yuzu/configuration/configure_per_game.cpp @@ -17,6 +17,7 @@ #include <QTimer> #include "common/fs/fs_util.h" +#include "common/settings_enums.h" #include "configuration/shared_widget.h" #include "core/core.h" #include "core/file_sys/control_metadata.h" @@ -57,7 +58,7 @@ ConfigurePerGame::ConfigurePerGame(QWidget* parent, u64 title_id_, const std::st std::make_unique<ConfigureGraphicsAdvanced>(system_, tab_group, *builder, this); graphics_tab = std::make_unique<ConfigureGraphics>( system_, vk_device_records, [&]() { graphics_advanced_tab->ExposeComputeOption(); }, - tab_group, *builder, this); + [](Settings::AspectRatio, Settings::ResolutionSetup) {}, tab_group, *builder, this); input_tab = std::make_unique<ConfigureInputPerGame>(system_, game_config.get(), this); system_tab = std::make_unique<ConfigureSystem>(system_, tab_group, *builder, this); |