# HG changeset patch # User belugas # Date 1191549989 0 # Node ID a1f7d65a60be9e1785bfca71b82c48d94eeece06 # Parent eac4f5b693bc47c128b9f890f84e3254bebef20f (svn r11203) -Codechange: Raise the TTDPatch version a little higher, as some new features will be shortly exploitable diff -r eac4f5b693bc -r a1f7d65a60be src/newgrf.cpp --- a/src/newgrf.cpp Fri Oct 05 01:46:49 2007 +0000 +++ b/src/newgrf.cpp Fri Oct 05 02:06:29 2007 +0000 @@ -3387,8 +3387,8 @@ 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; }