diff options
| author | 2017-06-22 22:00:03 -0400 | |
|---|---|---|
| committer | 2017-06-22 22:00:03 -0400 | |
| commit | cac1133bc40bf72f8d1be0898d000177de159fbb (patch) | |
| tree | 63e26fe231b5f42bd152c108c4a2cfddcb934787 /src/citra_qt/configuration/config.cpp | |
| parent | Merge pull request #2796 from yuriks/hle-null-handles (diff) | |
| parent | Changing default values for bg_red, bg_green, and bg_blue from 1.0 to 0.0. (diff) | |
| download | yuzu-cac1133bc40bf72f8d1be0898d000177de159fbb.tar.gz yuzu-cac1133bc40bf72f8d1be0898d000177de159fbb.tar.xz yuzu-cac1133bc40bf72f8d1be0898d000177de159fbb.zip | |
Merge pull request #2795 from chris062689/master
Change default UI background from white to black.
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"); |