diff options
author | Darkvater <Darkvater@openttd.org> | 2006-08-26 14:39:05 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-08-26 14:39:05 +0000 |
commit | 3201dca9ac28b8f30a3de88a074b3b51960f0f8b (patch) | |
tree | 8f82242ae1a94e83e8758db0b2ce4b76cd80a282 | |
parent | da621ff57ba64ed432f8448f460a8519cb4d6455 (diff) | |
download | openttd-3201dca9ac28b8f30a3de88a074b3b51960f0f8b.tar.xz |
(svn r6139) -Codechange: strings are StringID. This should be changed in strings.h as well, but you would need to include openttd.h and that opens a whole new can of worms.
-rw-r--r-- | strings.c | 2 | ||||
-rw-r--r-- | strings.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -168,7 +168,7 @@ static const char *GetStringPtr(StringID string) // 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, uint string, const int32 *argv) +char *GetStringWithArgs(char *buffr, StringID string, const int32 *argv) { uint index = GB(string, 0, 11); uint tab = GB(string, 11, 5); @@ -12,7 +12,7 @@ static inline char* InlineString(char* buf, uint16 string) } char *GetString(char *buffr, uint16 string); -char *GetStringWithArgs(char *buffr, uint string, const int32 *argv); +char *GetStringWithArgs(char *buffr, uint16 string, const int32 *argv); extern char _userstring[128]; |