summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/version.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-18 07:32:35 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-18 07:32:35 +0000
commitbf1ccbad46e68e9bebe41916a669acc1699ccf48 (patch)
tree729937cb6303febe991c791177539a5f0ae187f1 /crawl-ref/source/version.h
parent2745b7a72f961ef1f57e0a209167f30512b68beb (diff)
downloadcrawl-ref-bf1ccbad46e68e9bebe41916a669acc1699ccf48.tar.gz
crawl-ref-bf1ccbad46e68e9bebe41916a669acc1699ccf48.zip
Tweaked version.h and command.cc to add revision info for Windows svn builds.
Ice beasts get AT_HIT instead of AT_CLAW (to correspond to Ice Form). Yaks and death yaks get AT_BUTT instead of AT_HIT. Maybe we should add AT_GORE, AT_KICK, and AT_TRAMPLE too. :-) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1482 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/version.h')
-rw-r--r--crawl-ref/source/version.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/version.h b/crawl-ref/source/version.h
index 2a0fac788b..397c811609 100644
--- a/crawl-ref/source/version.h
+++ b/crawl-ref/source/version.h
@@ -52,6 +52,12 @@
* *********************************************************************** */
#define BUILD_DATE __DATE__
+#ifdef BUILD_REVISION
+#define VERSION_DETAIL "r" BUILD_REVISION "/" BUILD_DATE
+#else
+#define VERSION_DETAIL BUILD_DATE
+#endif
+
#define SAVE_MAJOR_VERSION 2
#endif