summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fileio_func.h2
-rw-r--r--src/network/network_content.cpp2
2 files changed, 2 insertions, 2 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);
diff --git a/src/network/network_content.cpp b/src/network/network_content.cpp
index 7f610d9d3..46e371e6f 100644
--- a/src/network/network_content.cpp
+++ b/src/network/network_content.cpp
@@ -539,7 +539,7 @@ void ClientNetworkContentSocketHandler::AfterDownload()
TarScanner ts;
std::string fname = GetFullFilename(this->curInfo, false);
- ts.AddFile(sd, fname.c_str());
+ ts.AddFile(sd, fname);
if (this->curInfo->type == CONTENT_TYPE_BASE_MUSIC) {
/* Music can't be in a tar. So extract the tar! */