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:
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user