summaryrefslogtreecommitdiff
path: root/src/fileio_func.h
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2020-12-27 18:10:40 +0000
committerCharles Pigott <charlespigott@googlemail.com>2020-12-27 18:30:53 +0000
commite0161cf8da063f3cb6fa5283b2616bc8cde0438f (patch)
tree7c2717f7c88e942e285117d29b8d50c2912ca498 /src/fileio_func.h
parent1bb0e6ed8cfba61818343a36111af3902f7d7199 (diff)
downloadopenttd-e0161cf8da063f3cb6fa5283b2616bc8cde0438f.tar.xz
Fix b408fe7: Don't try to construct a std::string from nullptr
Diffstat (limited to 'src/fileio_func.h')
-rw-r--r--src/fileio_func.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio_func.h b/src/fileio_func.h
index 019573906..d2840b9aa 100644
--- a/src/fileio_func.h
+++ b/src/fileio_func.h
@@ -92,7 +92,7 @@ public:
ALL = BASESET | NEWGRF | AI | SCENARIO | GAME, ///< Scan for everything.
};
- bool AddFile(const std::string &filename, size_t basepath_length, const std::string &tar_filename = nullptr) override;
+ bool AddFile(const std::string &filename, size_t basepath_length, const std::string &tar_filename = {}) override;
bool AddFile(Subdirectory sd, const std::string &filename);