summaryrefslogtreecommitdiff
path: root/strings.h
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-08-26 14:39:05 +0000
committerDarkvater <Darkvater@openttd.org>2006-08-26 14:39:05 +0000
commit3201dca9ac28b8f30a3de88a074b3b51960f0f8b (patch)
tree8f82242ae1a94e83e8758db0b2ce4b76cd80a282 /strings.h
parentda621ff57ba64ed432f8448f460a8519cb4d6455 (diff)
downloadopenttd-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.
Diffstat (limited to 'strings.h')
-rw-r--r--strings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings.h b/strings.h
index f984bd480..063d5a365 100644
--- a/strings.h
+++ b/strings.h
@@ -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];