summaryrefslogtreecommitdiff
path: root/strings.h
diff options
context:
space:
mode:
authorludde <ludde@openttd.org>2005-07-17 10:18:23 +0000
committerludde <ludde@openttd.org>2005-07-17 10:18:23 +0000
commitb72e1fb67d529a87e5ed08ae047151d70429248b (patch)
tree580baeafb9253f5b2902966d68b1ff63ebe346fc /strings.h
parent10bc66eb42bb731ecb77f8771ce10f7e91427c5f (diff)
downloadopenttd-b72e1fb67d529a87e5ed08ae047151d70429248b.tar.xz
(svn r2597) Feature: [string system] Support cases.
- Cases are used to change a string, such as Coal Mine, depending on the surrounding context. - Cases are defined like "STR_4802_COAL_MINE.ack :Coala Mina" - All cases need to be listed on the top of the file like this "##case ack" - When using the string, type {STRING.ack} to choose the "ack" version of Coal mine. - Also combined the strgen arrays into a struct, and fixed a bug with SetXY.
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 beb49735b..e60e50830 100644
--- a/strings.h
+++ b/strings.h
@@ -10,7 +10,7 @@ static inline char* InlineString(char* buf, uint16 string)
}
char *GetString(char *buffr, uint16 string);
-char *GetStringWithArgs(char *buffr, uint16 string, const int32 *argv);
+char *GetStringWithArgs(char *buffr, uint string, const int32 *argv);
void InjectDParam(int amount);
int32 GetParamInt32(void);