diff options
author | Simon Howard | 2005-08-04 01:15:10 +0000 |
---|---|---|
committer | Simon Howard | 2005-08-04 01:15:10 +0000 |
commit | dc538ad61c6ac372f5ceee8676be0f1a8097f7c3 (patch) | |
tree | b44017a38b9543c449e30097e848890c58b928b3 /src | |
parent | 80ee1ed1bab906c3c305184cd4720bfa9b623e5d (diff) | |
download | chocolate-doom-dc538ad61c6ac372f5ceee8676be0f1a8097f7c3.tar.gz chocolate-doom-dc538ad61c6ac372f5ceee8676be0f1a8097f7c3.tar.bz2 chocolate-doom-dc538ad61c6ac372f5ceee8676be0f1a8097f7c3.zip |
Fix clev cheat
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 35
Diffstat (limited to 'src')
-rw-r--r-- | src/st_stuff.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/st_stuff.c b/src/st_stuff.c index b612c8bb..649f8ea2 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: st_stuff.c 8 2005-07-23 16:44:57Z fraggle $ +// $Id: st_stuff.c 35 2005-08-04 01:15:10Z fraggle $ // // Copyright(C) 1993-1996 Id Software, Inc. // Copyright(C) 2005 Simon Howard @@ -22,6 +22,9 @@ // 02111-1307, USA. // // $Log$ +// Revision 1.3 2005/08/04 01:15:10 fraggle +// Fix clev cheat +// // Revision 1.2 2005/07/23 16:44:57 fraggle // Update copyright to GNU GPL // @@ -37,7 +40,7 @@ //----------------------------------------------------------------------------- static const char -rcsid[] = "$Id: st_stuff.c 8 2005-07-23 16:44:57Z fraggle $"; +rcsid[] = "$Id: st_stuff.c 35 2005-08-04 01:15:10Z fraggle $"; #include <stdio.h> @@ -696,7 +699,7 @@ ST_Responder (event_t* ev) if (gamemode == commercial) { - epsd = 0; + epsd = 1; map = (buf[0] - '0')*10 + buf[1] - '0'; } else |