(svn r2982) Newgrf: Added patch option for wagon speed limits. This is enabled by default.

This commit is contained in:
2005-09-24 13:56:39 +00:00
parent 47de27ab69
commit c02b1d555d
7 changed files with 10 additions and 4 deletions

View File

@@ -2187,7 +2187,8 @@ static void InitializeGRFSpecial(void)
_ttdpatch_flags[2] = (1 << 0x0D) /* buildonslopes */
| (1 << 0x16) /* canals */
| (1 << 0x17); /* newstartyear */
| (1 << 0x17) /* newstartyear */
| (_patches.wagon_speed_limits ? (1 << 0x1D) : 0); /* wagonspeedlimits */
}
static void InitNewGRFFile(const char* filename, int sprite_offset)