summaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorGravatar archshift2014-10-25 12:54:44 -0700
committerGravatar archshift2014-10-27 18:35:21 -0700
commit0783498f570e7d5c00174cd10a3c1ff105d1eae6 (patch)
tree10f64506a8f5111f56c4db17c95f6aba19baf0b9 /src/core/settings.h
parentMerge pull request #150 from lioncash/typo (diff)
downloadyuzu-0783498f570e7d5c00174cd10a3c1ff105d1eae6.tar.gz
yuzu-0783498f570e7d5c00174cd10a3c1ff105d1eae6.tar.xz
yuzu-0783498f570e7d5c00174cd10a3c1ff105d1eae6.zip
Use configuration files to enable or disable the new dyncom interpreter.
Diffstat (limited to 'src/core/settings.h')
-rw-r--r--src/core/settings.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index d586e2ef4..3e4781884 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,10 @@ 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
32 // Data Storage
28 bool use_virtual_sd; 33 bool use_virtual_sd;
29} extern values; 34} extern values;
30 35