diff options
| author | 2016-05-24 17:22:44 -0400 | |
|---|---|---|
| committer | 2016-05-24 17:24:11 -0400 | |
| commit | c106f71bebdc6fffc03967f5a57618cfbe2ebaed (patch) | |
| tree | b2a38b17a7ba306d97e90c3a0bf1a29cd8c841f8 /src/citra_qt/config.cpp | |
| parent | Merge pull request #1520 from JamePeng/checknew3ds (diff) | |
| download | yuzu-c106f71bebdc6fffc03967f5a57618cfbe2ebaed.tar.gz yuzu-c106f71bebdc6fffc03967f5a57618cfbe2ebaed.tar.xz yuzu-c106f71bebdc6fffc03967f5a57618cfbe2ebaed.zip | |
New3DS: Minor style cleanup to #1520.
Diffstat (limited to 'src/citra_qt/config.cpp')
| -rw-r--r-- | src/citra_qt/config.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/config.cpp b/src/citra_qt/config.cpp index f6e498128..6e4ba3907 100644 --- a/src/citra_qt/config.cpp +++ b/src/citra_qt/config.cpp | |||
| @@ -61,7 +61,7 @@ void Config::ReadValues() { | |||
| 61 | qt_config->endGroup(); | 61 | qt_config->endGroup(); |
| 62 | 62 | ||
| 63 | qt_config->beginGroup("System"); | 63 | qt_config->beginGroup("System"); |
| 64 | Settings::values.is_new3ds = qt_config->value("is_new3ds", false).toBool(); | 64 | Settings::values.is_new_3ds = qt_config->value("is_new_3ds", false).toBool(); |
| 65 | Settings::values.region_value = qt_config->value("region_value", 1).toInt(); | 65 | Settings::values.region_value = qt_config->value("region_value", 1).toInt(); |
| 66 | qt_config->endGroup(); | 66 | qt_config->endGroup(); |
| 67 | 67 | ||
| @@ -152,7 +152,7 @@ void Config::SaveValues() { | |||
| 152 | qt_config->endGroup(); | 152 | qt_config->endGroup(); |
| 153 | 153 | ||
| 154 | qt_config->beginGroup("System"); | 154 | qt_config->beginGroup("System"); |
| 155 | qt_config->setValue("is_new3ds", Settings::values.is_new3ds); | 155 | qt_config->setValue("is_new_3ds", Settings::values.is_new_3ds); |
| 156 | qt_config->setValue("region_value", Settings::values.region_value); | 156 | qt_config->setValue("region_value", Settings::values.region_value); |
| 157 | qt_config->endGroup(); | 157 | qt_config->endGroup(); |
| 158 | 158 | ||