From 5034421ee407ad390a0fb95c13cfee2106f7ce68 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Sat, 4 Jul 2020 16:51:15 +0100 Subject: [PATCH] Never set stable tag bit in NewGRF version value --- src/rev.cpp.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rev.cpp.in b/src/rev.cpp.in index 69db783d23..c1b2f7ee94 100644 --- a/src/rev.cpp.in +++ b/src/rev.cpp.in @@ -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;