Fix rev.cpp.in

This commit is contained in:
Pavel Stupnikov
2019-03-30 14:55:55 +03:00
parent 71dc188b27
commit 15f4f47804
2 changed files with 5 additions and 5 deletions

View File

@@ -88,5 +88,5 @@ const uint32 _openttd_newgrf_version = 1 << 28 | 9 << 24 | 0 << 20 | 0 << 19 | 2
/**
* Variable used by MorphOS to show the version.
*/
extern const char morphos_versions_tag[] = "$VER: OpenTTD 1.9.0-RC2 (26.03.19) OpenTTD Team [MorphOS, PowerPC]";
extern const char morphos_versions_tag[] = "$VER: OpenTTD --g (30.03.19) OpenTTD Team [MorphOS, PowerPC]";
#endif

View File

@@ -37,7 +37,7 @@ bool IsReleasedVersion()
*
* <modified> shows a "M", if the binary is made from modified source code.
*/
const char _openttd_revision[] = "1.9.0-beta2";
const char _openttd_revision[] = "1.9.0-RC2";
/**
* The text version of OpenTTD's build date.
@@ -50,7 +50,7 @@ const char _openttd_build_date[] = __DATE__ " " __TIME__;
/**
* The git revision hash of this version.
*/
const char _openttd_revision_hash[] = "!!GITHASH!!";
const char _openttd_revision_hash[] = "9ae1726eedaa325918348a9545331eac5412c1f5";
/**
* Let us know if current build was modified. This detection
@@ -67,7 +67,7 @@ const byte _openttd_revision_modified = 0;
* If this is non-0, then _openttd_revision is the name of the tag,
* and the version is likely a beta, release candidate, or real release.
*/
const byte _openttd_revision_tagged = !!ISTAG!!;
const byte _openttd_revision_tagged = 1;
/**
* The NewGRF revision of OTTD:
@@ -82,7 +82,7 @@ const byte _openttd_revision_tagged = !!ISTAG!!;
* 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 | !!ISSTABLETAG!! << 19 | 28004;
const uint32 _openttd_newgrf_version = 1 << 28 | 9 << 24 | 0 << 20 | 0 << 19 | 28004;
#ifdef __MORPHOS__
/**