diff options
author | Mikko Tiusanen <ams@daug.net> | 2014-11-23 13:45:04 +0200 |
---|---|---|
committer | Mikko Tiusanen <ams@daug.net> | 2014-11-23 13:45:04 +0200 |
commit | 47baa4bc2f5f3c6e195d429ef020bbc86ac27ce7 (patch) | |
tree | 4dea9d8c25e83129043e9f8132db02936af900d5 /src/game/g_main.c | |
parent | d3bda2434f3042c5329fe9ade36d47f8c8c1c1d9 (diff) |
Added check around the EDGE_VERSION define in main for easy override from build.
Diffstat (limited to 'src/game/g_main.c')
-rw-r--r-- | src/game/g_main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c index 54b7c32..4777f71 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -26,9 +26,12 @@ TREMULOUS EDGE MOD SRC FILE =========================================================================== */ #include "g_local.h" +#include "edge_version.h" #define G_MOD_VERSION "Aardvark 0.5x" SVN_VERSION -#define EDGE_MOD_VERSION "7.0.x" +#ifndef EDGE_MOD_VERSION +#define EDGE_MOD_VERSION "7.5.x" +#endif level_locals_t level; typedef struct |