summaryrefslogtreecommitdiff
path: root/src/citra/config.cpp
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-05-29 19:17:51 -0300
committerGravatar Yuri Kunde Schlesner2015-05-29 19:39:26 -0300
commitd65b42a69abbde2130c77917e7db5722799a6896 (patch)
tree12b4c12f8711185125c155d2c86d2e0c162ec7de /src/citra/config.cpp
parentMerge pull request #817 from linkmauve/citra.ico (diff)
downloadyuzu-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/config.cpp')
-rw-r--r--src/citra/config.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp
index 846479fd7..1378567c1 100644
--- a/src/citra/config.cpp
+++ b/src/citra/config.cpp
@@ -66,7 +66,6 @@ void Config::ReadValues() {
66 Settings::values.pad_cright_key = glfw_config->GetInteger("Controls", "pad_cright", GLFW_KEY_L); 66 Settings::values.pad_cright_key = glfw_config->GetInteger("Controls", "pad_cright", GLFW_KEY_L);
67 67
68 // Core 68 // Core
69 Settings::values.gpu_refresh_rate = glfw_config->GetInteger("Core", "gpu_refresh_rate", 30);
70 Settings::values.frame_skip = glfw_config->GetInteger("Core", "frame_skip", 0); 69 Settings::values.frame_skip = glfw_config->GetInteger("Core", "frame_skip", 0);
71 70
72 // Renderer 71 // Renderer