summaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorGravatar bunnei2014-10-27 22:51:10 -0400
committerGravatar bunnei2014-10-27 22:51:10 -0400
commit48f80bb79efc3b27f8ff965c43aafeffff99e0e1 (patch)
tree3d08f714f3392ba6aadb0641bac420d8f24c29dc /src/core/settings.h
parentMerge pull request #141 from archshift/crash-hunt (diff)
parentAdded `gpu_refresh_rate` config setting for the new interpreter speed hack. (diff)
downloadyuzu-48f80bb79efc3b27f8ff965c43aafeffff99e0e1.tar.gz
yuzu-48f80bb79efc3b27f8ff965c43aafeffff99e0e1.tar.xz
yuzu-48f80bb79efc3b27f8ff965c43aafeffff99e0e1.zip
Merge pull request #151 from archshift/dyncom-enabled
Use configuration files to enable or disable the new dyncom interpreter.
Diffstat (limited to 'src/core/settings.h')
-rw-r--r--src/core/settings.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index d586e2ef4..6a6265e18 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -7,6 +7,7 @@
7namespace Settings { 7namespace Settings {
8 8
9struct Values { 9struct Values {
10 // Controls
10 int pad_a_key; 11 int pad_a_key;
11 int pad_b_key; 12 int pad_b_key;
12 int pad_x_key; 13 int pad_x_key;
@@ -25,6 +26,11 @@ struct Values {
25 int pad_sleft_key; 26 int pad_sleft_key;
26 int pad_sright_key; 27 int pad_sright_key;
27 28
29 // Core
30 int cpu_core;
31 int gpu_refresh_rate;
32
33 // Data Storage
28 bool use_virtual_sd; 34 bool use_virtual_sd;
29} extern values; 35} extern values;
30 36