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 | 7c17d394f2da4293aad858ed40d90609ce56dc82 (patch) | |
tree | db21aac742d31a555f9ea74822f3d7e4876940c8 /src | |
parent | 95b32d58e7642f9659a96b5a46a5b460faa5824f (diff) | |
download | openttd-7c17d394f2da4293aad858ed40d90609ce56dc82.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; } |