summaryrefslogtreecommitdiff
path: root/src/newgrf_text.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2012-01-15 13:17:02 +0000
committeryexo <yexo@openttd.org>2012-01-15 13:17:02 +0000
commit15292fa08091e138d9a325ca75a2209225b699b1 (patch)
treeb177a7e33ad6db2c9eb92c4be9b175c4a864eae7 /src/newgrf_text.cpp
parent8e68a442b95ce0f1f4be82fe689049ad40b96086 (diff)
downloadopenttd-15292fa08091e138d9a325ca75a2209225b699b1.tar.xz
(svn r23804) -Fix: [NewGRF] Make string code 80 more secure by not crashing when it's used in strings where it's not supposed to be used
Diffstat (limited to 'src/newgrf_text.cpp')
-rw-r--r--src/newgrf_text.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_text.cpp b/src/newgrf_text.cpp
index 33164a123..da18d2ceb 100644
--- a/src/newgrf_text.cpp
+++ b/src/newgrf_text.cpp
@@ -1065,7 +1065,7 @@ uint RemapNewGRFStringControlCode(uint scc, char *buf_start, char **buff, const
case SCC_NEWGRF_UNPRINT: *buff = max(*buff - Utf8Consume(str), buf_start); break;
case SCC_NEWGRF_PRINT_WORD_STRING_ID:
- *argv = TTDPStringIDToOTTDStringIDMapping(_newgrf_textrefstack.PopUnsignedWord());
+ *argv = _newgrf_textrefstack.PopUnsignedWord();
break;
}
}