Never set stable tag bit in NewGRF version value

This commit is contained in:
Jonathan G Rennison
2020-07-04 16:51:15 +01:00
parent 6288abae56
commit 5034421ee4

View File

@@ -90,4 +90,5 @@ const byte _openttd_revision_tagged = ${REV_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 | 11 << 24 | 0 << 20 | ${REV_ISSTABLETAG} << 19 | 28004;
/** ${REV_ISSTABLETAG} removed */
const uint32 _openttd_newgrf_version = 1 << 28 | 11 << 24 | 0 << 20 | 0 << 19 | 28004;