diff options
Diffstat (limited to '')
| -rw-r--r-- | src/citra/config.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp index 03a0ce606..65edcfc9f 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp | |||
| @@ -59,10 +59,15 @@ void Config::ReadData() { | |||
| 59 | Settings::values.use_virtual_sd = glfw_config->GetBoolean("Data Storage", "use_virtual_sd", true); | 59 | Settings::values.use_virtual_sd = glfw_config->GetBoolean("Data Storage", "use_virtual_sd", true); |
| 60 | } | 60 | } |
| 61 | 61 | ||
| 62 | void Config::ReadMiscellaneous() { | ||
| 63 | Settings::values.enable_log = glfw_config->GetBoolean("Miscellaneous", "enable_log", true); | ||
| 64 | } | ||
| 65 | |||
| 62 | void Config::Reload() { | 66 | void Config::Reload() { |
| 63 | LoadINI(glfw_config, glfw_config_loc.c_str(), DefaultINI::glfw_config_file); | 67 | LoadINI(glfw_config, glfw_config_loc.c_str(), DefaultINI::glfw_config_file); |
| 64 | ReadControls(); | 68 | ReadControls(); |
| 65 | ReadData(); | 69 | ReadData(); |
| 70 | ReadMiscellaneous(); | ||
| 66 | } | 71 | } |
| 67 | 72 | ||
| 68 | Config::~Config() { | 73 | Config::~Config() { |