diff options
Diffstat (limited to 'src/citra_qt/config.cpp')
| -rw-r--r-- | src/citra_qt/config.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/citra_qt/config.cpp b/src/citra_qt/config.cpp index 460f4ec07..2a9af1f38 100644 --- a/src/citra_qt/config.cpp +++ b/src/citra_qt/config.cpp | |||
| @@ -49,7 +49,6 @@ void Config::ReadValues() { | |||
| 49 | qt_config->endGroup(); | 49 | qt_config->endGroup(); |
| 50 | 50 | ||
| 51 | qt_config->beginGroup("Core"); | 51 | qt_config->beginGroup("Core"); |
| 52 | Settings::values.gpu_refresh_rate = qt_config->value("gpu_refresh_rate", 30).toInt(); | ||
| 53 | Settings::values.frame_skip = qt_config->value("frame_skip", 0).toInt(); | 52 | Settings::values.frame_skip = qt_config->value("frame_skip", 0).toInt(); |
| 54 | qt_config->endGroup(); | 53 | qt_config->endGroup(); |
| 55 | 54 | ||
| @@ -102,7 +101,6 @@ void Config::SaveValues() { | |||
| 102 | qt_config->endGroup(); | 101 | qt_config->endGroup(); |
| 103 | 102 | ||
| 104 | qt_config->beginGroup("Core"); | 103 | qt_config->beginGroup("Core"); |
| 105 | qt_config->setValue("gpu_refresh_rate", Settings::values.gpu_refresh_rate); | ||
| 106 | qt_config->setValue("frame_skip", Settings::values.frame_skip); | 104 | qt_config->setValue("frame_skip", Settings::values.frame_skip); |
| 107 | qt_config->endGroup(); | 105 | qt_config->endGroup(); |
| 108 | 106 | ||