aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hw/gpu.cpp11
-rw-r--r--src/core/settings.h1
2 files changed, 2 insertions, 10 deletions
diff --git a/src/core/hw/gpu.cpp b/src/core/hw/gpu.cpp
index 94768b10..76dbe3fd 100644
--- a/src/core/hw/gpu.cpp
+++ b/src/core/hw/gpu.cpp
@@ -218,16 +218,7 @@ void Update() {
/// Initialize hardware
void Init() {
- switch (Settings::values.cpu_core) {
- case Core::CPU_FastInterpreter:
- kFrameCycles = 268123480 / 2048;
- break;
- case Core::CPU_Interpreter:
- default:
- kFrameCycles = 268123480 / 60;
- break;
- }
-
+ kFrameCycles = 268123480 / Settings::values.gpu_refresh_rate;
kFrameTicks = kFrameCycles / 3;
g_cur_line = 0;
diff --git a/src/core/settings.h b/src/core/settings.h
index 3e478188..6a6265e1 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -28,6 +28,7 @@ struct Values {
// Core
int cpu_core;
+ int gpu_refresh_rate;
// Data Storage
bool use_virtual_sd;