summaryrefslogtreecommitdiff
path: root/src/strings.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2011-10-14 16:51:30 +0000
committeryexo <yexo@openttd.org>2011-10-14 16:51:30 +0000
commit47aaf41d401ba7422f9a6cf4abb43d378e4ccdfd (patch)
treea7297272634cb7352200f6e28860c1ed532db62c /src/strings.cpp
parent1312c35bb6504b4972ec153759daee58682a06f7 (diff)
downloadopenttd-47aaf41d401ba7422f9a6cf4abb43d378e4ccdfd.tar.xz
(svn r23029) -Fix: [NewGRF] support for cases in strings was broken
Diffstat (limited to 'src/strings.cpp')
-rw-r--r--src/strings.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/strings.cpp b/src/strings.cpp
index 393c7884f..523b76a13 100644
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -715,6 +715,8 @@ static char *FormatString(char *buff, const char *str_arg, StringParameters *arg
case SCC_NEWGRF_PRINT_WORD_STRING_ID: {
StringID substr = args->GetInt32(SCC_NEWGRF_PRINT_WORD_STRING_ID);
str_stack.push(GetStringPtr(substr));
+ casei = modifier >> 24;
+ modifier = 0;
break;
}