summaryrefslogtreecommitdiff
path: root/src/citra/config.cpp
diff options
context:
space:
mode:
authorGravatar archshift2014-10-27 18:56:08 -0700
committerGravatar archshift2014-10-27 19:42:01 -0700
commit09e19f9f1ee2e965a581e70b30cbc357f4b5ad21 (patch)
treeb18eca8d8a6dc02fbb3eacd6f8408546590c1deb /src/citra/config.cpp
parentUse configuration files to enable or disable the new dyncom interpreter. (diff)
downloadyuzu-09e19f9f1ee2e965a581e70b30cbc357f4b5ad21.tar.gz
yuzu-09e19f9f1ee2e965a581e70b30cbc357f4b5ad21.tar.xz
yuzu-09e19f9f1ee2e965a581e70b30cbc357f4b5ad21.zip
Added `gpu_refresh_rate` config setting for the new interpreter speed hack.
Diffstat (limited to 'src/citra/config.cpp')
-rw-r--r--src/citra/config.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp
index 3e5e986c2..c5ce8a164 100644
--- a/src/citra/config.cpp
+++ b/src/citra/config.cpp
@@ -58,6 +58,7 @@ void Config::ReadControls() {
58 58
59void Config::ReadCore() { 59void Config::ReadCore() {
60 Settings::values.cpu_core = glfw_config->GetInteger("Core", "cpu_core", Core::CPU_Interpreter); 60 Settings::values.cpu_core = glfw_config->GetInteger("Core", "cpu_core", Core::CPU_Interpreter);
61 Settings::values.gpu_refresh_rate = glfw_config->GetInteger("Core", "gpu_refresh_rate", 60);
61} 62}
62 63
63void Config::ReadData() { 64void Config::ReadData() {