aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra/config.cpp
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2014-10-09 19:43:40 -0700
committerGravatar archshift <admin@archshift.com>2014-10-22 15:24:25 -0700
commita59f57d50467bd5dba1f28b8020278d6298babf7 (patch)
tree62f1528fcb2815bcb382ea8c606b6fa8fc18ba95 /src/citra/config.cpp
parentefacd65b261049dae6785b22764bde4e65f80ddd (diff)
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/citra/config.cpp')
-rw-r--r--src/citra/config.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp
index 1d5e9c71..03a0ce60 100644
--- a/src/citra/config.cpp
+++ b/src/citra/config.cpp
@@ -55,9 +55,14 @@ void Config::ReadControls() {
Settings::values.pad_sright_key = glfw_config->GetInteger("Controls", "pad_sright", GLFW_KEY_RIGHT);
}
+void Config::ReadData() {
+ Settings::values.use_virtual_sd = glfw_config->GetBoolean("Data Storage", "use_virtual_sd", true);
+}
+
void Config::Reload() {
LoadINI(glfw_config, glfw_config_loc.c_str(), DefaultINI::glfw_config_file);
ReadControls();
+ ReadData();
}
Config::~Config() {