summaryrefslogtreecommitdiffstats
path: root/src/yuzu/configuration/configure_per_game.cpp
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-08-16 22:12:42 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-08-16 22:12:42 +0200
commit6fe51b48e960e81b1304d833b2d69b468a4a238a (patch)
treee5fdd254cdb61e3953edefad1f399c1e4882d15e /src/yuzu/configuration/configure_per_game.cpp
parentyuzu-qt: Implement unspecified screenshot ratio (diff)
downloadyuzu-6fe51b48e960e81b1304d833b2d69b468a4a238a.tar
yuzu-6fe51b48e960e81b1304d833b2d69b468a4a238a.tar.gz
yuzu-6fe51b48e960e81b1304d833b2d69b468a4a238a.tar.bz2
yuzu-6fe51b48e960e81b1304d833b2d69b468a4a238a.tar.lz
yuzu-6fe51b48e960e81b1304d833b2d69b468a4a238a.tar.xz
yuzu-6fe51b48e960e81b1304d833b2d69b468a4a238a.tar.zst
yuzu-6fe51b48e960e81b1304d833b2d69b468a4a238a.zip
Diffstat (limited to 'src/yuzu/configuration/configure_per_game.cpp')
-rw-r--r--src/yuzu/configuration/configure_per_game.cpp3
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 cd8b3012e..4f9e8db08 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);