summaryrefslogtreecommitdiff
path: root/src/newgrf.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2007-04-20 17:23:33 +0000
committerpeter1138 <peter1138@openttd.org>2007-04-20 17:23:33 +0000
commit8e457248a734eff087f045d298752a43967df681 (patch)
tree285d1f6b27199e07f24f3295525019db044f5fd7 /src/newgrf.cpp
parentaa0e97e3cee8a4ae3bc3279deecbcb694c7f94f0 (diff)
downloadopenttd-8e457248a734eff087f045d298752a43967df681.tar.xz
(svn r9690) -Codechange: Update another couple of NewGRF TTDPatch flags
Diffstat (limited to 'src/newgrf.cpp')
-rw-r--r--src/newgrf.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index c1805540e..e1ff6c3a1 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -4104,6 +4104,7 @@ static void InitializeGRFSpecial()
| (0 << 0x0B) // enhancedgui
| (0 << 0x0C) // newagerating
| ((_patches.build_on_slopes ? 1 : 0) << 0x0D) // buildonslopes
+ | ((_patches.full_load_any ? 1 : 0) << 0x0E) // fullloadany
| (0 << 0x0F) // planespeed
| (0 << 0x10) // moreindustriesperclimate - obsolete
| (0 << 0x11) // moretoylandfeatures
@@ -4145,7 +4146,8 @@ static void InitializeGRFSpecial()
| (0 << 0x14) // trams
| (0 << 0x15) // enhancetunnels
| (0 << 0x16) // shortrvs
- | (0 << 0x17); // articulatedrvs
+ | (0 << 0x17) // articulatedrvs
+ | (1 << 0x1E); // variablerunningcosts
}
static void ResetCustomStations()