diff options
| author | 2023-11-16 21:21:54 -0500 | |
|---|---|---|
| committer | 2023-11-21 01:58:13 -0500 | |
| commit | eedecaef96637a783c8eeb8d625838f3bc2a121a (patch) | |
| tree | 8c319912c884122b46add1a080d866d7ae27cd36 /src/frontend_common/config.cpp | |
| parent | android: Rework config lifecycle (diff) | |
| download | yuzu-eedecaef96637a783c8eeb8d625838f3bc2a121a.tar.gz yuzu-eedecaef96637a783c8eeb8d625838f3bc2a121a.tar.xz yuzu-eedecaef96637a783c8eeb8d625838f3bc2a121a.zip | |
frontend_common: Disable UTF-8 BOM in config
Diffstat (limited to 'src/frontend_common/config.cpp')
| -rw-r--r-- | src/frontend_common/config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend_common/config.cpp b/src/frontend_common/config.cpp index d317d81fd..8eb62e8ef 100644 --- a/src/frontend_common/config.cpp +++ b/src/frontend_common/config.cpp | |||
| @@ -56,7 +56,7 @@ void Config::Initialize(const std::optional<std::string> config_path) { | |||
| 56 | } | 56 | } |
| 57 | 57 | ||
| 58 | void Config::WriteToIni() const { | 58 | void Config::WriteToIni() const { |
| 59 | if (const SI_Error rc = config->SaveFile(config_loc.c_str()); rc < 0) { | 59 | if (const SI_Error rc = config->SaveFile(config_loc.c_str(), false); rc < 0) { |
| 60 | LOG_ERROR(Frontend, "Config file could not be saved!"); | 60 | LOG_ERROR(Frontend, "Config file could not be saved!"); |
| 61 | } | 61 | } |
| 62 | } | 62 | } |