(svn r23158) -Feature: [NewGRF] Patch/setting variable 14. (rubidium)

This commit is contained in:
frosch 2011-11-08 17:29:41 +00:00
parent 7c7285ea9b
commit e58d6cbc63
1 changed files with 4 additions and 0 deletions

View File

@ -6202,6 +6202,10 @@ static uint32 GetPatchVariable(uint8 param)
(log_X << 12) | (log_Y << 8) | (log_X + log_Y);
}
/* The maximum height of the map. */
case 0x14:
return MAX_TILE_HEIGHT;
default:
grfmsg(2, "ParamSet: Unknown Patch variable 0x%02X.", param);
return 0;