summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rev.cpp.in5
-rw-r--r--src/rev.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/src/rev.cpp.in b/src/rev.cpp.in
index 0f4b2a6b5..3c68e18eb 100644
--- a/src/rev.cpp.in
+++ b/src/rev.cpp.in
@@ -48,6 +48,11 @@ const char _openttd_revision[] = "!!VERSION!!";
const char _openttd_build_date[] = __DATE__ " " __TIME__;
/**
+ * The git revision hash of this version.
+ */
+const char _openttd_revision_hash[] = "!!GITHASH!!";
+
+/**
* Let us know if current build was modified. This detection
* works even in the case when revision string is overridden by
* --revision argument.
diff --git a/src/rev.h b/src/rev.h
index d31dbb51c..55fc08699 100644
--- a/src/rev.h
+++ b/src/rev.h
@@ -14,6 +14,7 @@
extern const char _openttd_revision[];
extern const char _openttd_build_date[];
+extern const char _openttd_revision_hash[];
extern const byte _openttd_revision_modified;
extern const uint32 _openttd_newgrf_version;