summaryrefslogtreecommitdiff
path: root/src/strgen
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-11-16 21:01:56 +0000
committerrubidium <rubidium@openttd.org>2010-11-16 21:01:56 +0000
commitebf7b915b0dee963e5398de8e06a0377c49142e6 (patch)
tree7a357823fca94e222741ffb54dbe7aaf347b7bf0 /src/strgen
parentc96cb9ce3757f90384f8cd624eb3f2878db477ff (diff)
downloadopenttd-ebf7b915b0dee963e5398de8e06a0377c49142e6.tar.xz
(svn r21215) -Codechange: store the plural form in the plural (choice) lists
Diffstat (limited to 'src/strgen')
-rw-r--r--src/strgen/strgen.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/strgen/strgen.cpp b/src/strgen/strgen.cpp
index bcb44f4fe..d7a6ab0f0 100644
--- a/src/strgen/strgen.cpp
+++ b/src/strgen/strgen.cpp
@@ -354,6 +354,7 @@ static void EmitPlural(char *buf, int value)
}
PutUtf8(SCC_PLURAL_LIST);
+ PutByte(_lang.plural_form);
PutByte(TranslateArgumentIdx(argidx, offset));
EmitWordList(words, nw);
}