summaryrefslogtreecommitdiff
path: root/src/citra/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra/config.h')
-rw-r--r--src/citra/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra/config.h b/src/citra/config.h
index 52a478146..b1c31f59c 100644
--- a/src/citra/config.h
+++ b/src/citra/config.h
@@ -6,15 +6,15 @@
#include <memory>
#include <string>
-
#include <inih/cpp/INIReader.h>
class Config {
std::unique_ptr<INIReader> sdl2_config;
std::string sdl2_config_loc;
- bool LoadINI(const std::string& default_contents="", bool retry=true);
+ bool LoadINI(const std::string& default_contents = "", bool retry = true);
void ReadValues();
+
public:
Config();