aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra/config.h
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.h
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.h')
-rw-r--r--src/citra/config.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/citra/config.h b/src/citra/config.h
index de0570b4..c4fac245 100644
--- a/src/citra/config.h
+++ b/src/citra/config.h
@@ -16,6 +16,7 @@ class Config {
bool LoadINI(INIReader* config, const char* location, const std::string& default_contents="", bool retry=true);
void ReadControls();
+ void ReadData();
public:
Config();
~Config();