diff options
| author | 2016-11-05 02:58:11 -0600 | |
|---|---|---|
| committer | 2016-11-05 03:46:43 -0600 | |
| commit | d9305b0a074a255eb484911db70a126a6fe347b1 (patch) | |
| tree | fcd629c513d4c8d217bf89069b288a39debb594f /src/citra_qt/config.cpp | |
| parent | Rework frame layouts to use a max rectangle instead of hardcoded calculations (diff) | |
| download | yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.tar.gz yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.tar.xz yuzu-d9305b0a074a255eb484911db70a126a6fe347b1.zip | |
Add default hotkey to swap primary screens.
Also minor style changes
Diffstat (limited to '')
| -rw-r--r-- | src/citra_qt/config.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra_qt/config.cpp b/src/citra_qt/config.cpp index f4f1a354d..3d2312619 100644 --- a/src/citra_qt/config.cpp +++ b/src/citra_qt/config.cpp | |||
| @@ -55,7 +55,8 @@ void Config::ReadValues() { | |||
| 55 | qt_config->endGroup(); | 55 | qt_config->endGroup(); |
| 56 | 56 | ||
| 57 | qt_config->beginGroup("Layout"); | 57 | qt_config->beginGroup("Layout"); |
| 58 | Settings::values.layout_option = static_cast<Settings::LayoutOption>(qt_config->value("layout_option").toInt()); | 58 | Settings::values.layout_option = |
| 59 | static_cast<Settings::LayoutOption>(qt_config->value("layout_option").toInt()); | ||
| 59 | Settings::values.swap_screen = qt_config->value("swap_screen", false).toBool(); | 60 | Settings::values.swap_screen = qt_config->value("swap_screen", false).toBool(); |
| 60 | qt_config->endGroup(); | 61 | qt_config->endGroup(); |
| 61 | 62 | ||