summaryrefslogtreecommitdiff
path: root/src/newgrf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf.cpp')
-rw-r--r--src/newgrf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index 29125f158..318c5e8ea 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -2598,7 +2598,7 @@ static std::string ReadDWordAsString(ByteReader *reader)
char output[5];
for (int i = 0; i < 4; i++) output[i] = reader->ReadByte();
output[4] = '\0';
- str_validate(output, lastof(output));
+ StrMakeValidInPlace(output, lastof(output));
return std::string(output);
}