diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-09-06 18:21:10 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-09-06 18:21:10 +0000 |
commit | 4e64b0a1b82badbf25bb32bd96290f96668c2290 (patch) | |
tree | b6712eb8ada4742f54b84a507ce48070ed668b39 /code/qcommon | |
parent | ed3c9635a68e03c1448e64ff49824b65fa1f4776 (diff) | |
download | ioquake3-aero-4e64b0a1b82badbf25bb32bd96290f96668c2290.tar.gz ioquake3-aero-4e64b0a1b82badbf25bb32bd96290f96668c2290.zip |
* Compile time and runtime checks for SDL >= 1.2.7
* Modified versioning to play nice with the reverted Makefile change
git-svn-id: svn://svn.icculus.org/quake3/trunk@1168 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon')
-rw-r--r-- | code/qcommon/q_shared.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/code/qcommon/q_shared.h b/code/qcommon/q_shared.h index 12dd36e..458c53c 100644 --- a/code/qcommon/q_shared.h +++ b/code/qcommon/q_shared.h @@ -26,11 +26,13 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // q_shared.h -- included first by ALL program modules. // A user mod should never modify this file -#define Q3_VERSION_BASE "ioq3 1.35" +#define PRODUCT_NAME "ioq3" +#define PRODUCT_VERSION "1.35" + #ifdef SVN_VERSION -# define Q3_VERSION Q3_VERSION_BASE "_SVN" SVN_VERSION +# define Q3_VERSION PRODUCT_NAME " " SVN_VERSION #else -# define Q3_VERSION Q3_VERSION_BASE +# define Q3_VERSION PRODUCT_NAME " " PRODUCT_VERSION #endif #define CLIENT_WINDOW_TITLE "ioquake3" |