Changeset - r22790:bb3adf6974f5
[Not reviewed]
master
0 1 0
frosch - 6 years ago 2018-04-11 18:43:54
frosch@openttd.org
Remove: [NewGRF] OpenTTD version no longer contains a revision number.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/rev.cpp.in
Show inline comments
 
@@ -66,13 +66,13 @@ const byte _openttd_revision_modified = 
 
 * 24-27 minor version
 
 * 20-23 build
 
 *    19 1 if it is a release, 0 if it is not.
 
 *  0-18 revision number; 0 for releases and when the revision is unknown.
 
 *  0-18 used to be the SVN revision, currently unused
 
 *
 
 * The 19th bit is there so the development/betas/alpha, etc. leading to a
 
 * final release will always have a lower version number than the released
 
 * version, thus making comparisons on specific revisions easy.
 
 */
 
const uint32 _openttd_newgrf_version = 1 << 28 | 9 << 24 | 0 << 20 | 0 << 19 | (!!REVISION!! & ((1 << 19) - 1));
 
const uint32 _openttd_newgrf_version = 1 << 28 | 9 << 24 | 0 << 20 | 0 << 19;
 

	
 
#ifdef __MORPHOS__
 
/**
0 comments (0 inline, 0 general)