diff options
| author | 2015-05-29 19:17:51 -0300 | |
|---|---|---|
| committer | 2015-05-29 19:39:26 -0300 | |
| commit | d65b42a69abbde2130c77917e7db5722799a6896 (patch) | |
| tree | 12b4c12f8711185125c155d2c86d2e0c162ec7de /src/citra_qt/config.cpp | |
| parent | Merge pull request #817 from linkmauve/citra.ico (diff) | |
| download | yuzu-d65b42a69abbde2130c77917e7db5722799a6896.tar.gz yuzu-d65b42a69abbde2130c77917e7db5722799a6896.tar.xz yuzu-d65b42a69abbde2130c77917e7db5722799a6896.zip | |
Remove gpu_refresh_rate configuration option
Changing it makes emulation inherently inaccurate. It also had a wrong
default value (30, whereas the real system has a refresh rate of 60 Hz)
which, even if changed, would continue to be used unless people manually
removed it from their config files.
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 | ||