diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-29 19:17:51 -0300 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-05-29 19:39:26 -0300 |
commit | d65b42a69abbde2130c77917e7db5722799a6896 (patch) | |
tree | 12b4c12f8711185125c155d2c86d2e0c162ec7de /src/citra/config.cpp | |
parent | fb597b6d68ea07b3b692f9108d4be9c23c8c2585 (diff) |
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.cpp | 1 |
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() { Settings::values.pad_cright_key = glfw_config->GetInteger("Controls", "pad_cright", GLFW_KEY_L); // Core - Settings::values.gpu_refresh_rate = glfw_config->GetInteger("Core", "gpu_refresh_rate", 30); Settings::values.frame_skip = glfw_config->GetInteger("Core", "frame_skip", 0); // Renderer |