Files
@ r4066:919d15dcd976
Branch filter:
Location: cpp/openttd-patchpack/source/strings.h - annotation
r4066:919d15dcd976
421 B
text/x-c
(svn r5362) - Fix: Updated sprites in New Airports to be allow cleaner replacement by newgrf graphics. All tiles now use SPR_AIRPORT_APRON as the tarmac. Created two new sprites in airports.grf for half-grass half-tarmac tiles on Intercontinental airport.
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 */
|