diff options
| author | 2018-07-21 18:30:04 -0700 | |
|---|---|---|
| committer | 2018-07-21 18:30:04 -0700 | |
| commit | 9533875eeb729d20ce2f92e9363a55c5894d262a (patch) | |
| tree | fb594e919f10e136dfcb523a71b1dd6a3a30bb53 /src/yuzu_cmd/config.cpp | |
| parent | Merge pull request #762 from Subv/ioctl2 (diff) | |
| parent | file_util: Use an enum class for GetUserPath() (diff) | |
| download | yuzu-9533875eeb729d20ce2f92e9363a55c5894d262a.tar.gz yuzu-9533875eeb729d20ce2f92e9363a55c5894d262a.tar.xz yuzu-9533875eeb729d20ce2f92e9363a55c5894d262a.zip | |
Merge pull request #760 from lioncash/path
file_util: Use an enum class for GetUserPath()
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 723e8b4cc..cea1a5e62 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | 15 | ||
| 16 | Config::Config() { | 16 | Config::Config() { |
| 17 | // TODO: Don't hardcode the path; let the frontend decide where to put the config files. | 17 | // TODO: Don't hardcode the path; let the frontend decide where to put the config files. |
| 18 | sdl2_config_loc = FileUtil::GetUserPath(D_CONFIG_IDX) + "sdl2-config.ini"; | 18 | sdl2_config_loc = FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) + "sdl2-config.ini"; |
| 19 | sdl2_config = std::make_unique<INIReader>(sdl2_config_loc); | 19 | sdl2_config = std::make_unique<INIReader>(sdl2_config_loc); |
| 20 | 20 | ||
| 21 | Reload(); | 21 | Reload(); |