changeset 4405:ab6c6c2a811e draft

(svn r6158) -Revert r6139 as that breaks strings with cases. Thanks michi_cc
author Darkvater <Darkvater@openttd.org>
date Sat, 26 Aug 2006 20:54:30 +0000
parents 9caa4ef62d05
children d4702ef4c475
files strings.c strings.h
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/strings.c
+++ b/strings.c
@@ -167,8 +167,8 @@
 // The highest 8 bits of string contain the "case index".
 // These 8 bits will only be set when FormatString wants to print
 // the string in a different case. No one else except FormatString
-// should set those bits.
-char *GetStringWithArgs(char *buffr, StringID string, const int32 *argv)
+// should set those bits, therefore string CANNOT be StringID, but uint32.
+char *GetStringWithArgs(char *buffr, uint string, const int32 *argv)
 {
 	uint index = GB(string,  0, 11);
 	uint tab   = GB(string, 11,  5);
--- a/strings.h
+++ b/strings.h
@@ -12,7 +12,7 @@
 }
 
 char *GetString(char *buffr, uint16 string);
-char *GetStringWithArgs(char *buffr, uint16 string, const int32 *argv);
+char *GetStringWithArgs(char *buffr, uint string, const int32 *argv);
 
 extern char _userstring[128];