summaryrefslogtreecommitdiff
path: root/src/strife/d_main.c
diff options
context:
space:
mode:
authorJames Haley2011-09-19 00:15:06 +0000
committerJames Haley2011-09-19 00:15:06 +0000
commit7b1aff6c464f28e7d5f8b10fd33b15f5d15122a6 (patch)
treec16524afe693c9f346ae2becbcf1a0ad879b84d6 /src/strife/d_main.c
parentef586e36e0a871bd1cc9222148a47605d1b554a5 (diff)
downloadchocolate-doom-7b1aff6c464f28e7d5f8b10fd33b15f5d15122a6.tar.gz
chocolate-doom-7b1aff6c464f28e7d5f8b10fd33b15f5d15122a6.tar.bz2
chocolate-doom-7b1aff6c464f28e7d5f8b10fd33b15f5d15122a6.zip
The current Chocolate Strife code emulates v1.2, not 1.31. 1.31 support
is still a TODO and cannot be pursued without resolution of the keybinding issue for the menu system. Subversion-branch: /branches/v2-branch Subversion-revision: 2386
Diffstat (limited to 'src/strife/d_main.c')
-rw-r--r--src/strife/d_main.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/strife/d_main.c b/src/strife/d_main.c
index 2eab0308..7170b5d1 100644
--- a/src/strife/d_main.c
+++ b/src/strife/d_main.c
@@ -759,7 +759,7 @@ static char *banners[] =
// strife1.wad:
" "
- "STRIFE: Quest for the Sigil v1.31"
+ "STRIFE: Quest for the Sigil v1.2"
" "
};
@@ -1012,7 +1012,7 @@ static struct
char *cmdline;
GameVersion_t version;
} gameversions[] = {
- {"Strife 1.31", "1.31", exe_strife_1_31},
+ {"Strife 1.2", "1.2", exe_strife_1_2},
{ NULL, NULL, 0},
};
@@ -1024,14 +1024,15 @@ static void InitGameVersion(void)
int i;
// This is mostly redundant for now, as we only support
- // Strife v1.31. But perhaps in the future we might decide
+ // Strife v1.2. But perhaps in the future we might decide
// to support older versions ...
+ // - haleyjd: the current code emulates v1.2. 1.31 support is the TODO.
//!
// @arg <version>
// @category compat
//
- // Emulate a specific version of Doom. Valid values are "1.31".
+ // Emulate a specific version of Doom. Valid values are "1.2".
//
p = M_CheckParmWithArgs("-gameversion", 1);
@@ -1062,7 +1063,7 @@ static void InitGameVersion(void)
}
else
{
- gameversion = exe_strife_1_31;
+ gameversion = exe_strife_1_2;
}
}