summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/configure_graphics.cpp
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2016-11-05 09:58:11 +0100
committerJames Rowe <jroweboy@gmail.com>2016-11-05 10:46:43 +0100
commitd9305b0a074a255eb484911db70a126a6fe347b1 (patch)
treefcd629c513d4c8d217bf89069b288a39debb594f /src/citra_qt/configure_graphics.cpp
parentRework frame layouts to use a max rectangle instead of hardcoded calculations (diff)
downloadyuzu-d9305b0a074a255eb484911db70a126a6fe347b1.tar
yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.tar.gz
yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.tar.bz2
yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.tar.lz
yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.tar.xz
yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.tar.zst
yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.zip
Diffstat (limited to 'src/citra_qt/configure_graphics.cpp')
-rw-r--r--src/citra_qt/configure_graphics.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra_qt/configure_graphics.cpp b/src/citra_qt/configure_graphics.cpp
index c6c28197e..29834e11b 100644
--- a/src/citra_qt/configure_graphics.cpp
+++ b/src/citra_qt/configure_graphics.cpp
@@ -32,7 +32,8 @@ void ConfigureGraphics::applyConfiguration() {
Settings::values.use_shader_jit = ui->toggle_shader_jit->isChecked();
Settings::values.use_scaled_resolution = ui->toggle_scaled_resolution->isChecked();
Settings::values.use_vsync = ui->toggle_vsync->isChecked();
- Settings::values.layout_option = static_cast<Settings::LayoutOption>(ui->layout_combobox->currentIndex());
+ Settings::values.layout_option =
+ static_cast<Settings::LayoutOption>(ui->layout_combobox->currentIndex());
Settings::values.swap_screen = ui->swap_screen->isChecked();
Settings::Apply();
}