diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rev.cpp.in | 5 | ||||
-rw-r--r-- | src/rev.h | 1 |
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. @@ -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; |