summaryrefslogtreecommitdiffstats
path: root/src/citra_qt
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-05-31 10:48:20 +0200
committerbunnei <bunneidev@gmail.com>2015-05-31 10:48:20 +0200
commit833936fc64d63cf3cfd6454c4be0d1f2f7445ffd (patch)
tree98f8740bfc89c2dfd4e430677befd003b53d0049 /src/citra_qt
parentMerge pull request #822 from bunnei/pica-improvements (diff)
parentRemove gpu_refresh_rate configuration option (diff)
downloadyuzu-833936fc64d63cf3cfd6454c4be0d1f2f7445ffd.tar
yuzu-833936fc64d63cf3cfd6454c4be0d1f2f7445ffd.tar.gz
yuzu-833936fc64d63cf3cfd6454c4be0d1f2f7445ffd.tar.bz2
yuzu-833936fc64d63cf3cfd6454c4be0d1f2f7445ffd.tar.lz
yuzu-833936fc64d63cf3cfd6454c4be0d1f2f7445ffd.tar.xz
yuzu-833936fc64d63cf3cfd6454c4be0d1f2f7445ffd.tar.zst
yuzu-833936fc64d63cf3cfd6454c4be0d1f2f7445ffd.zip
Diffstat (limited to 'src/citra_qt')
-rw-r--r--src/citra_qt/config.cpp2
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() {
qt_config->endGroup();
qt_config->beginGroup("Core");
- Settings::values.gpu_refresh_rate = qt_config->value("gpu_refresh_rate", 30).toInt();
Settings::values.frame_skip = qt_config->value("frame_skip", 0).toInt();
qt_config->endGroup();
@@ -102,7 +101,6 @@ void Config::SaveValues() {
qt_config->endGroup();
qt_config->beginGroup("Core");
- qt_config->setValue("gpu_refresh_rate", Settings::values.gpu_refresh_rate);
qt_config->setValue("frame_skip", Settings::values.frame_skip);
qt_config->endGroup();