summaryrefslogtreecommitdiff
path: root/src/strife/d_main.c
diff options
context:
space:
mode:
authorJames Haley2010-09-29 18:16:24 +0000
committerJames Haley2010-09-29 18:16:24 +0000
commiteb1e33f9dbbce358b5de557e6d8c366a60de9866 (patch)
tree48e79347b07570afe4111400786ebcb87b3f1639 /src/strife/d_main.c
parentedf7efbea35087a6f56ed71ed6f5db613386d39d (diff)
downloadchocolate-doom-eb1e33f9dbbce358b5de557e6d8c366a60de9866.tar.gz
chocolate-doom-eb1e33f9dbbce358b5de557e6d8c366a60de9866.tar.bz2
chocolate-doom-eb1e33f9dbbce358b5de557e6d8c366a60de9866.zip
Significant work on savegames.
Subversion-branch: /branches/strife-branch Subversion-revision: 2150
Diffstat (limited to 'src/strife/d_main.c')
-rw-r--r--src/strife/d_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strife/d_main.c b/src/strife/d_main.c
index 76eb5112..8c307180 100644
--- a/src/strife/d_main.c
+++ b/src/strife/d_main.c
@@ -771,7 +771,7 @@ static char *GetGameName(char *gamename)
// We also need to cut off spaces to get the basic name
gamename = Z_Malloc(strlen(deh_sub) + 10, PU_STATIC, 0);
- sprintf(gamename, deh_sub, DOOM_VERSION / 100, DOOM_VERSION % 100);
+ sprintf(gamename, deh_sub, STRIFE_VERSION / 100, STRIFE_VERSION % 100);
while (gamename[0] != '\0' && isspace(gamename[0]))
strcpy(gamename, gamename+1);