Files
@ r4381:c965d1f3016a
Branch filter:
Location: cpp/openttd-patchpack/source/strings.h - annotation
r4381:c965d1f3016a
421 B
text/x-c
(svn r6131) -Codechange : Complete all missing _ttdpatch_flags entries
-Feature : both unifiedmaglevmode are now set.
Maglev and monorail are not allowed to run on each other tracks and will not be.
Setting those flags will allow grfsets as the Norvegian one to be loaded
-Codechange : link the TTDPatch's irregularstations with OTTD's nonuniform_stations
-Codechange : Reformat the whole array (thanks Rubidium, it sure looks better now)
-Feature : both unifiedmaglevmode are now set.
Maglev and monorail are not allowed to run on each other tracks and will not be.
Setting those flags will allow grfsets as the Norvegian one to be loaded
-Codechange : link the TTDPatch's irregularstations with OTTD's nonuniform_stations
-Codechange : Reformat the whole array (thanks Rubidium, it sure looks better now)
r2186:5ee653b1b5e1 r2186:5ee653b1b5e1 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1312:cc3799d5ff15 r2087:625809b4ca2b r2063:f9227c383fe6 r2202:65185b96e219 r2202:65185b96e219 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r2436:963efe8b84cc | /* $Id$ */
#ifndef STRINGS_H
#define STRINGS_H
static inline char* InlineString(char* buf, uint16 string)
{
*buf++ = '\x81';
*buf++ = string & 0xFF;
*buf++ = string >> 8;
return buf;
}
char *GetString(char *buffr, uint16 string);
char *GetStringWithArgs(char *buffr, uint string, const int32 *argv);
extern char _userstring[128];
void InjectDParam(int amount);
int32 GetParamInt32(void);
#endif /* STRINGS_H */
|