summaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorGravatar archshift2014-10-09 19:43:40 -0700
committerGravatar archshift2014-10-22 15:24:25 -0700
commita59f57d50467bd5dba1f28b8020278d6298babf7 (patch)
tree62f1528fcb2815bcb382ea8c606b6fa8fc18ba95 /src/core/settings.h
parentMerge pull request #145 from yuriks/shader-log-crash (diff)
downloadyuzu-a59f57d50467bd5dba1f28b8020278d6298babf7.tar.gz
yuzu-a59f57d50467bd5dba1f28b8020278d6298babf7.tar.xz
yuzu-a59f57d50467bd5dba1f28b8020278d6298babf7.zip
Use config files to store whether SDMC is enabled or not
Before, it used to use whether the directory actually existed. As a result, .citra-emu/sdmc was never auto-created (something quite confusing to me until I read through the logs).
Diffstat (limited to 'src/core/settings.h')
-rw-r--r--src/core/settings.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index a84c3d4b6..d586e2ef4 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -24,6 +24,8 @@ struct Values {
24 int pad_sdown_key; 24 int pad_sdown_key;
25 int pad_sleft_key; 25 int pad_sleft_key;
26 int pad_sright_key; 26 int pad_sright_key;
27
28 bool use_virtual_sd;
27} extern values; 29} extern values;
28 30
29} 31}