From c64b0946e882ca6ff199834853696e3e0c239b04 Mon Sep 17 00:00:00 2001 From: Loïc Guilloux Date: Sat, 10 Apr 2021 11:15:47 +0200 Subject: Fix e0561dbde: [MinGW] use ofstring(wchar_t*) as ofstring(wstring) doesn't exist (#8985) --- src/ini.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ini.cpp b/src/ini.cpp index a5045b715..017f5f903 100644 --- a/src/ini.cpp +++ b/src/ini.cpp @@ -53,7 +53,7 @@ bool IniFile::SaveToDisk(const std::string &filename) std::string file_new{ filename }; file_new.append(".new"); - std::ofstream os(OTTD2FS(file_new)); + std::ofstream os(OTTD2FS(file_new).c_str()); if (os.fail()) return false; for (const IniGroup *group = this->group; group != nullptr; group = group->next) { -- cgit v1.2.3-54-g00ecf