shithub: choc

Download patch

ref: 2e2f520fbb35382f545f31ff12d6ece991b05527
parent: 2f20195e2aa6f17fc30626a566b70dc218d46e22
author: Simon Howard <[email protected]>
date: Sat Oct 1 23:23:54 EDT 2005

Fix the length of time that ENDOOM is displayed for

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 148

--- 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 @@
     waiting = true;
     start_ms = I_GetTime();
 
-    while (waiting && I_GetTime() < start_ms + 10000)
+    while (waiting && I_GetTime() < start_ms + 350)
     {
         if (!SDL_PollEvent(&ev))
         {