1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-26 07:59:09 +00:00

Fix 65f65ad2: Missing path separator that fell over a cliff.

This commit is contained in:
Michael Lutz
2020-12-27 15:07:06 +01:00
committed by GitHub
parent dc5b8020cc
commit 4f8e7b2a2b

View File

@@ -219,7 +219,7 @@ static std::string FiosMakeFilename(const std::string *path, const char *name, c
const char *period = strrchr(name, '.');
if (period != nullptr && strcasecmp(period, ext) == 0) ext = "";
return buf + name + ext;
return buf + PATHSEP + name + ext;
}
/**