diff options
| author | 2015-05-31 04:48:20 -0400 | |
|---|---|---|
| committer | 2015-05-31 04:48:20 -0400 | |
| commit | 833936fc64d63cf3cfd6454c4be0d1f2f7445ffd (patch) | |
| tree | 98f8740bfc89c2dfd4e430677befd003b53d0049 /src/citra_qt/config.cpp | |
| parent | Merge pull request #822 from bunnei/pica-improvements (diff) | |
| parent | Remove gpu_refresh_rate configuration option (diff) | |
| download | yuzu-833936fc64d63cf3cfd6454c4be0d1f2f7445ffd.tar.gz yuzu-833936fc64d63cf3cfd6454c4be0d1f2f7445ffd.tar.xz yuzu-833936fc64d63cf3cfd6454c4be0d1f2f7445ffd.zip | |
Merge pull request #832 from yuriks/refresh-rate-option
Remove gpu_refresh_rate configuration option
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 | ||