Files
@ r1725:dcb3319784d1
Branch filter:
Location: cpp/openttd-patchpack/source/strings.h - annotation
r1725:dcb3319784d1
404 B
text/x-c
(svn r2229) - Fix: [ 1188777 ] Non-existing sprite #5125 (presignal). The DOS grf file trgi.grf has 6 less sprites than the windows one. This results in some segfaults for certain sprites. Fixed it by added a dummy grf file consisting ofr 6 sprites and loaded when using DOS gfx at the appropiate place.
r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1553:e0831bf58344 r1312:cc3799d5ff15 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 r1309:4100b4013e37 | #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);
void InjectDParam(int amount);
int32 GetParamInt32(void);
int GetParamInt16(void);
int GetParamInt8(void);
int GetParamUint16(void);
uint GetCurrentCurrencyRate(void);
#endif
|