diff options
author | Michael Lutz <michi@icosahedron.de> | 2020-12-06 21:11:49 +0100 |
---|---|---|
committer | Michael Lutz <michi@icosahedron.de> | 2020-12-27 13:19:25 +0100 |
commit | 358056ec428d1938b8c9219a60c6fb400115f152 (patch) | |
tree | 428afbedb78158cd174f3c003c70ce3d45d1bea9 /src/settingsgen | |
parent | 024a3f62593fd783285c5ff09b8c85ee1fc34e2d (diff) | |
download | openttd-358056ec428d1938b8c9219a60c6fb400115f152.tar.xz |
Codechange: Keep filenames of loaded Fio files in std::strings.
Diffstat (limited to 'src/settingsgen')
-rw-r--r-- | src/settingsgen/settingsgen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settingsgen/settingsgen.cpp b/src/settingsgen/settingsgen.cpp index b2a3c76f6..513b4c754 100644 --- a/src/settingsgen/settingsgen.cpp +++ b/src/settingsgen/settingsgen.cpp @@ -165,11 +165,11 @@ struct SettingsIniFile : IniLoadFile { { } - virtual FILE *OpenFile(const char *filename, Subdirectory subdir, size_t *size) + virtual FILE *OpenFile(const std::string &filename, Subdirectory subdir, size_t *size) { /* Open the text file in binary mode to prevent end-of-line translations * done by ftell() and friends, as defined by K&R. */ - FILE *in = fopen(filename, "rb"); + FILE *in = fopen(filename.c_str(), "rb"); if (in == nullptr) return nullptr; fseek(in, 0L, SEEK_END); |