From d4f0b6f434911840e2762f89ca0de460f38133f9 Mon Sep 17 00:00:00 2001 From: Loïc Guilloux Date: Tue, 20 Apr 2021 21:38:46 +0200 Subject: Fix: [CMake] Auto-fill version details in rev.cpp and ottres.rc (#9066) --- src/rev.cpp.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rev.cpp.in') diff --git a/src/rev.cpp.in b/src/rev.cpp.in index 208588a71..3939ca5a0 100644 --- a/src/rev.cpp.in +++ b/src/rev.cpp.in @@ -85,4 +85,4 @@ 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 | 12 << 24 | 0 << 20 | ${REV_ISSTABLETAG} << 19 | 28004; +const uint32 _openttd_newgrf_version = ${REV_MAJOR} << 28 | ${REV_MINOR} << 24 | ${REV_BUILD} << 20 | ${REV_ISSTABLETAG} << 19 | 28004; -- cgit v1.2.3-54-g00ecf