diff options
author | belugas <belugas@openttd.org> | 2007-10-05 02:06:29 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2007-10-05 02:06:29 +0000 |
commit | fa1322a740e4442570f46fbd1742a4180b3a9f67 (patch) | |
tree | db21aac742d31a555f9ea74822f3d7e4876940c8 /src | |
parent | 060656289745b03b58cd36c4297a196b476f796b (diff) | |
download | openttd-fa1322a740e4442570f46fbd1742a4180b3a9f67.tar.xz |
(svn r11203) -Codechange: Raise the TTDPatch version a little higher, as some new features will be shortly exploitable
Diffstat (limited to 'src')
-rw-r--r-- | src/newgrf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 68c3910ee..1cb4c3dbe 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; } |