diff options
Diffstat (limited to 'src/citra/config.cpp')
| -rw-r--r-- | src/citra/config.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp index 305e3ba53..fd30bfc85 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp | |||
| @@ -73,7 +73,8 @@ void Config::ReadValues() { | |||
| 73 | Settings::values.bg_blue = (float)sdl2_config->GetReal("Renderer", "bg_blue", 1.0); | 73 | Settings::values.bg_blue = (float)sdl2_config->GetReal("Renderer", "bg_blue", 1.0); |
| 74 | 74 | ||
| 75 | // Layout | 75 | // Layout |
| 76 | Settings::values.layout_option = static_cast<Settings::LayoutOption>(sdl2_config->GetInteger("Layout", "layout_option", 0)); | 76 | Settings::values.layout_option = |
| 77 | static_cast<Settings::LayoutOption>(sdl2_config->GetInteger("Layout", "layout_option", 0)); | ||
| 77 | Settings::values.swap_screen = sdl2_config->GetBoolean("Layout", "swap_screen", false); | 78 | Settings::values.swap_screen = sdl2_config->GetBoolean("Layout", "swap_screen", false); |
| 78 | 79 | ||
| 79 | // Audio | 80 | // Audio |