diff options
Diffstat (limited to 'src/citra/config.cpp')
| -rw-r--r-- | src/citra/config.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/citra/config.cpp b/src/citra/config.cpp index a4162e9ad..f08b4069c 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp | |||
| @@ -5,11 +5,11 @@ | |||
| 5 | #include <memory> | 5 | #include <memory> |
| 6 | #include <SDL.h> | 6 | #include <SDL.h> |
| 7 | #include <inih/cpp/INIReader.h> | 7 | #include <inih/cpp/INIReader.h> |
| 8 | #include "citra/config.h" | ||
| 8 | #include "citra/default_ini.h" | 9 | #include "citra/default_ini.h" |
| 9 | #include "common/file_util.h" | 10 | #include "common/file_util.h" |
| 10 | #include "common/logging/log.h" | 11 | #include "common/logging/log.h" |
| 11 | #include "common/param_package.h" | 12 | #include "common/param_package.h" |
| 12 | #include "config.h" | ||
| 13 | #include "core/settings.h" | 13 | #include "core/settings.h" |
| 14 | #include "input_common/main.h" | 14 | #include "input_common/main.h" |
| 15 | 15 | ||
| @@ -21,6 +21,8 @@ Config::Config() { | |||
| 21 | Reload(); | 21 | Reload(); |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | Config::~Config() = default; | ||
| 25 | |||
| 24 | bool Config::LoadINI(const std::string& default_contents, bool retry) { | 26 | bool Config::LoadINI(const std::string& default_contents, bool retry) { |
| 25 | const char* location = this->sdl2_config_loc.c_str(); | 27 | const char* location = this->sdl2_config_loc.c_str(); |
| 26 | if (sdl2_config->ParseError() < 0) { | 28 | if (sdl2_config->ParseError() < 0) { |