summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Howard2005-10-02 03:23:54 +0000
committerSimon Howard2005-10-02 03:23:54 +0000
commit2e2f520fbb35382f545f31ff12d6ece991b05527 (patch)
treeb2d9b8d71ff2f5a3ebb5885fcc734f26caa1475b
parent2f20195e2aa6f17fc30626a566b70dc218d46e22 (diff)
downloadchocolate-doom-2e2f520fbb35382f545f31ff12d6ece991b05527.tar.gz
chocolate-doom-2e2f520fbb35382f545f31ff12d6ece991b05527.tar.bz2
chocolate-doom-2e2f520fbb35382f545f31ff12d6ece991b05527.zip
Fix the length of time that ENDOOM is displayed for
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 148
-rw-r--r--src/i_system.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/i_system.c b/src/i_system.c
index 4e7df1d9..d876baee 100644
--- a/src/i_system.c
+++ b/src/i_system.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: i_system.c 147 2005-10-02 03:16:29Z fraggle $
+// $Id: i_system.c 148 2005-10-02 03:23:54Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -22,6 +22,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.12 2005/10/02 03:23:54 fraggle
+// Fix the length of time that ENDOOM is displayed for
+//
// Revision 1.11 2005/10/02 03:16:29 fraggle
// ENDOOM support using text mode emulation
//
@@ -63,7 +66,7 @@
//-----------------------------------------------------------------------------
static const char
-rcsid[] = "$Id: i_system.c 147 2005-10-02 03:16:29Z fraggle $";
+rcsid[] = "$Id: i_system.c 148 2005-10-02 03:23:54Z fraggle $";
#include <stdlib.h>
@@ -195,7 +198,7 @@ void I_Endoom(void)
waiting = true;
start_ms = I_GetTime();
- while (waiting && I_GetTime() < start_ms + 10000)
+ while (waiting && I_GetTime() < start_ms + 350)
{
if (!SDL_PollEvent(&ev))
{