Fix the length of time that ENDOOM is displayed for
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 148
This commit is contained in:
parent
2f20195e2a
commit
2e2f520fbb
1 changed files with 6 additions and 3 deletions
|
|
@ -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))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue