summaryrefslogtreecommitdiff
path: root/newgrf.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-05-01 12:07:44 +0000
committerpeter1138 <peter1138@openttd.org>2006-05-01 12:07:44 +0000
commitf4dcf22f2c3f90e4fc4eea07e776f634e492641f (patch)
treeb09064a26eed7f302ad6e6660cddb73fb4aa17ce /newgrf.c
parent6d1dc477f620fdef35782fdb641461a6a916e389 (diff)
downloadopenttd-f4dcf22f2c3f90e4fc4eea07e776f634e492641f.tar.xz
(svn r4645) - NewGRF: pretend to be the last alpha version of TTDPatch in our version value.
Diffstat (limited to 'newgrf.c')
-rw-r--r--newgrf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newgrf.c b/newgrf.c
index 25e9839af..6d0735bb3 100644
--- a/newgrf.c
+++ b/newgrf.c
@@ -1998,7 +1998,7 @@ static void SkipIf(byte *buf, int len)
uint major = 2;
uint minor = 0;
uint revision = 10; // special case: 2.0.1 is 2.0.10
- uint build = 49;
+ uint build = 73;
param_val = (major << 24) | (minor << 20) | (revision << 16) | (build * 10);
break;
}