diff options
| author | 2017-06-21 13:45:07 -0400 | |
|---|---|---|
| committer | 2017-06-21 13:45:07 -0400 | |
| commit | f44b36072444d4529263a592bf9c9e155e995930 (patch) | |
| tree | 39d1ebb2964955cf0d092b11d78a2fdebb420c23 /src/citra_qt/configuration/config.cpp | |
| parent | Merge pull request #2790 from yuriks/remove-movefrom (diff) | |
| download | yuzu-f44b36072444d4529263a592bf9c9e155e995930.tar.gz yuzu-f44b36072444d4529263a592bf9c9e155e995930.tar.xz yuzu-f44b36072444d4529263a592bf9c9e155e995930.zip | |
Changing default values for bg_red, bg_green, and bg_blue from 1.0 to 0.0.
Diffstat (limited to 'src/citra_qt/configuration/config.cpp')
| -rw-r--r-- | src/citra_qt/configuration/config.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/citra_qt/configuration/config.cpp b/src/citra_qt/configuration/config.cpp index 2b99447ec..64ffc9152 100644 --- a/src/citra_qt/configuration/config.cpp +++ b/src/citra_qt/configuration/config.cpp | |||
| @@ -70,9 +70,9 @@ void Config::ReadValues() { | |||
| 70 | Settings::values.use_vsync = qt_config->value("use_vsync", false).toBool(); | 70 | Settings::values.use_vsync = qt_config->value("use_vsync", false).toBool(); |
| 71 | Settings::values.toggle_framelimit = qt_config->value("toggle_framelimit", true).toBool(); | 71 | Settings::values.toggle_framelimit = qt_config->value("toggle_framelimit", true).toBool(); |
| 72 | 72 | ||
| 73 | Settings::values.bg_red = qt_config->value("bg_red", 1.0).toFloat(); | 73 | Settings::values.bg_red = qt_config->value("bg_red", 0.0).toFloat(); |
| 74 | Settings::values.bg_green = qt_config->value("bg_green", 1.0).toFloat(); | 74 | Settings::values.bg_green = qt_config->value("bg_green", 0.0).toFloat(); |
| 75 | Settings::values.bg_blue = qt_config->value("bg_blue", 1.0).toFloat(); | 75 | Settings::values.bg_blue = qt_config->value("bg_blue", 0.0).toFloat(); |
| 76 | qt_config->endGroup(); | 76 | qt_config->endGroup(); |
| 77 | 77 | ||
| 78 | qt_config->beginGroup("Layout"); | 78 | qt_config->beginGroup("Layout"); |