From fa1322a740e4442570f46fbd1742a4180b3a9f67 Mon Sep 17 00:00:00 2001 From: belugas Date: Fri, 5 Oct 2007 02:06:29 +0000 Subject: [PATCH] (svn r11203) -Codechange: Raise the TTDPatch version a little higher, as some new features will be shortly exploitable --- src/newgrf.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 68c3910eed..1cb4c3dbe0 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -3387,8 +3387,8 @@ static uint32 GetParamVal(byte param, uint32 *cond_val) case 0x8B: { // TTDPatch version uint major = 2; uint minor = 6; - uint revision = 0; // special case: 2.0.1 is 2.0.10 - uint build = 1210; + uint revision = 1; // special case: 2.0.1 is 2.0.10 + uint build = 1382; return (major << 24) | (minor << 20) | (revision << 16) | build; }