diff options
Diffstat (limited to 'src/yuzu_cmd/config.h')
| -rw-r--r-- | src/yuzu_cmd/config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu_cmd/config.h b/src/yuzu_cmd/config.h index abc90f642..807199278 100644 --- a/src/yuzu_cmd/config.h +++ b/src/yuzu_cmd/config.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <filesystem> | ||
| 7 | #include <memory> | 8 | #include <memory> |
| 8 | #include <string> | 9 | #include <string> |
| 9 | 10 | ||
| @@ -11,7 +12,7 @@ class INIReader; | |||
| 11 | 12 | ||
| 12 | class Config { | 13 | class Config { |
| 13 | std::unique_ptr<INIReader> sdl2_config; | 14 | std::unique_ptr<INIReader> sdl2_config; |
| 14 | std::string sdl2_config_loc; | 15 | std::filesystem::path sdl2_config_loc; |
| 15 | 16 | ||
| 16 | bool LoadINI(const std::string& default_contents = "", bool retry = true); | 17 | bool LoadINI(const std::string& default_contents = "", bool retry = true); |
| 17 | void ReadValues(); | 18 | void ReadValues(); |