From: tomaz Date: Sun, 28 Aug 2005 01:21:42 +0000 (+0000) Subject: Added -did2 mode ( Defeat In Detail 2 ) X-Git-Tag: xonotic-v0.1.0preview~4611 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=4cadf0af49c8266d57171fa0fe7415f388d8a462 Added -did2 mode ( Defeat In Detail 2 ) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5662 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/common.c b/common.c index df8bbcc9..0a90829e 100644 --- a/common.c +++ b/common.c @@ -962,16 +962,19 @@ static const gamemode_info_t gamemode_info [] = { "neoteric", "-neoteric", "Neoteric", "id1", "neobase", "neo", "darkplaces" }, // GAME_OPENQUARTZ // COMMANDLINEOPTION: Game: -openquartz runs the game OpenQuartz, a standalone GPL replacement of the quake content -{ "openquartz", "-openquartz", "OpenQuartz", "id1", NULL, "openquartz", "darkplaces"}, +{ "openquartz", "-openquartz", "OpenQuartz", "id1", NULL, "openquartz", "darkplaces" }, // GAME_PRYDON // COMMANDLINEOPTION: Game: -prydon runs the topdown point and click action-RPG Prydon Gate -{ "prydon", "-prydon", "PrydonGate", "id1", "prydon", "prydon", "darkplaces"}, +{ "prydon", "-prydon", "PrydonGate", "id1", "prydon", "prydon", "darkplaces" }, // GAME_NETHERWORLD // COMMANDLINEOPTION: Game: -netherworld runs the game Netherworld: Dark Master -{ "netherworld", "-netherworld", "Netherworld: Dark Master", "id1", "netherworld", "nw", "darkplaces"}, +{ "netherworld", "-netherworld", "Netherworld: Dark Master", "id1", "netherworld", "nw", "darkplaces" }, // GAME_THEHUNTED // COMMANDLINEOPTION: Game: -thehunted runs the game The Hunted -{ "thehunted", "-thehunted", "The Hunted", "thdata", NULL, "th", "thehunted"}, +{ "thehunted", "-thehunted", "The Hunted", "thdata", NULL, "th", "thehunted" }, +// GAME_DEFEATINDETAIL2 +// COMMANDLINEOPTION: Game: -did2 runs the game Defeat In Detail 2 +{ "did2", "-did2", "Defeat In Detail 2", "data", NULL, "did2_", "did2" }, }; void COM_InitGameType (void) diff --git a/common.h b/common.h index f87a0607..41892a6c 100644 --- a/common.h +++ b/common.h @@ -246,6 +246,7 @@ typedef enum gamemode_e GAME_PRYDON, GAME_NETHERWORLD, GAME_THEHUNTED, + GAME_DEFEATINDETAIL2, } gamemode_t;