Files
@ r5018:3b0420351293
Branch filter:
Location: cpp/openttd-patchpack/source/strings.h - annotation
r5018:3b0420351293
369 B
text/x-c
(svn r7059) -Fix [FS#384]: Tunnel YAPF Penalty Incorrect. The penalty for upward slope was incorrectly applied on tunnel entrances. (Danny)
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 r4912:d420151de4c6 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, const char* last);
extern char _userstring[128];
void InjectDParam(int amount);
int32 GetParamInt32(void);
#endif /* STRINGS_H */
|