diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-23 19:52:40 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-23 19:52:43 +0200 |
commit | 2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9 (patch) | |
tree | 129596d2ff096166c68af0f39ebf6dda8d7a7ff9 /src/yuzu_cmd | |
parent | common/file_util: Remove unnecessary c_str() calls (diff) | |
download | yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar.gz yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar.bz2 yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar.lz yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar.xz yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.tar.zst yuzu-2b1fcc8a14d93c16ce00e1a9888e3f4f839f18f9.zip |
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r-- | src/yuzu_cmd/config.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index d0ae058fd..730956427 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp @@ -26,12 +26,12 @@ Config::Config() { Config::~Config() = default; bool Config::LoadINI(const std::string& default_contents, bool retry) { - const char* location = this->sdl2_config_loc.c_str(); + const std::string& location = this->sdl2_config_loc; if (sdl2_config->ParseError() < 0) { if (retry) { LOG_WARNING(Config, "Failed to load {}. Creating file from defaults...", location); FileUtil::CreateFullPath(location); - FileUtil::WriteStringToFile(true, default_contents, location); + FileUtil::WriteStringToFile(true, location, default_contents); sdl2_config = std::make_unique<INIReader>(location); // Reopen file return LoadINI(default_contents, false); |