strings.c
changeset 4405 07dead19636c
parent 4386 8a51b76f79e7
child 4416 442b18840569
--- a/strings.c	Sat Aug 26 20:09:25 2006 +0000
+++ b/strings.c	Sat Aug 26 20:54:30 2006 +0000
@@ -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);