diff options
| author | 2014-12-26 21:40:17 -0500 | |
|---|---|---|
| committer | 2014-12-28 22:14:05 -0500 | |
| commit | 3b9d181b8e0f1c3c2452497bdf65bbb65ab7c213 (patch) | |
| tree | 1271a38fb3124945506fdba0be87d00530e8e64b /src/citra/config.cpp | |
| parent | GPU: Change internal framerate to 30fps. (diff) | |
| download | yuzu-3b9d181b8e0f1c3c2452497bdf65bbb65ab7c213.tar.gz yuzu-3b9d181b8e0f1c3c2452497bdf65bbb65ab7c213.tar.xz yuzu-3b9d181b8e0f1c3c2452497bdf65bbb65ab7c213.zip | |
GPU: Implement frameskip and remove forced framebuffer swap hack.
Diffstat (limited to 'src/citra/config.cpp')
| -rw-r--r-- | src/citra/config.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp index f4b69f3f8..2bf0dff35 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp | |||
| @@ -59,6 +59,7 @@ void Config::ReadValues() { | |||
| 59 | // Core | 59 | // Core |
| 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", 30); | 61 | Settings::values.gpu_refresh_rate = glfw_config->GetInteger("Core", "gpu_refresh_rate", 30); |
| 62 | Settings::values.frame_skip = glfw_config->GetInteger("Core", "frame_skip", 0); | ||
| 62 | 63 | ||
| 63 | // Data Storage | 64 | // Data Storage |
| 64 | Settings::values.use_virtual_sd = glfw_config->GetBoolean("Data Storage", "use_virtual_sd", true); | 65 | Settings::values.use_virtual_sd = glfw_config->GetBoolean("Data Storage", "use_virtual_sd", true); |