summaryrefslogtreecommitdiff
path: root/src/g_game.c
diff options
context:
space:
mode:
authorSimon Howard2005-10-16 20:55:50 +0000
committerSimon Howard2005-10-16 20:55:50 +0000
commit860c6b8691ae2b48fc8b3be22d78d0f5fefc9696 (patch)
tree05d856b4ca23fc06322493810c74b2b73ec24daa /src/g_game.c
parente2c0f46e4f64f7970005a66056be85a6929b5227 (diff)
downloadchocolate-doom-860c6b8691ae2b48fc8b3be22d78d0f5fefc9696.tar.gz
chocolate-doom-860c6b8691ae2b48fc8b3be22d78d0f5fefc9696.tar.bz2
chocolate-doom-860c6b8691ae2b48fc8b3be22d78d0f5fefc9696.zip
Fix the '-cdrom' command-line option.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 204
Diffstat (limited to 'src/g_game.c')
-rw-r--r--src/g_game.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/g_game.c b/src/g_game.c
index fac27351..a4e32d02 100644
--- a/src/g_game.c
+++ b/src/g_game.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: g_game.c 202 2005-10-16 01:18:10Z fraggle $
+// $Id: g_game.c 204 2005-10-16 20:55:50Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.15 2005/10/16 20:55:50 fraggle
+// Fix the '-cdrom' command-line option.
+//
// Revision 1.14 2005/10/16 01:18:10 fraggle
// Global "configdir" variable with directory to store config files in.
// Create a function to find the filename for a savegame slot. Store
@@ -82,7 +85,7 @@
static const char
-rcsid[] = "$Id: g_game.c 202 2005-10-16 01:18:10Z fraggle $";
+rcsid[] = "$Id: g_game.c 204 2005-10-16 20:55:50Z fraggle $";
#include <string.h>
#include <stdlib.h>
@@ -1372,13 +1375,6 @@ void G_DoSaveGame (void)
int length;
int i;
-#if 0
- // -cdrom currently broken
- if (M_CheckParm("-cdrom"))
- sprintf(name,"c:\\doomdata\\"SAVEGAMENAME"%d.dsg",savegameslot);
- else
-#endif
-
strcpy(name, P_SaveGameFile(savegameslot));
description = savedescription;