(svn r7506) -Codechange: [NewGRF] Add action 7/9/D variable 0x81 (current year)

This commit is contained in:
glx
2006-12-18 15:34:12 +00:00
parent 78c1aad22c
commit f6a223345b
3 changed files with 12 additions and 4 deletions

View File

@@ -2193,6 +2193,9 @@ static void GraphicsNew(byte *buf, int len)
static uint32 GetParamVal(byte param, uint32 *cond_val)
{
switch (param) {
case 0x81: /* current year */
return clamp(_cur_year, ORIGINAL_BASE_YEAR, ORIGINAL_MAX_YEAR) - ORIGINAL_BASE_YEAR;
case 0x83: /* current climate, 0=temp, 1=arctic, 2=trop, 3=toyland */
return _opt.landscape;