foxygit / doom Log in
commit 53fa6c27c20f3abd7f290a39a97bfb9bae452b2d
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Tue Feb 12 21:26:31 2008 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Tue Feb 12 21:26:31 2008 +0000

    Set the default startup_delay to 1s.

    Subversion-branch: /trunk/chocolate-doom
    Subversion-revision: 1081
---
 setup/display.c | 2 +-
 src/i_video.c   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup/display.c b/setup/display.c
index 78abafdf..5e9d4fcf 100644
--- a/setup/display.c
+++ b/setup/display.c
@@ -71,7 +71,7 @@ int aspect_ratio_correct = 1;
 int fullscreen = 1;
 int screen_width = 320;
 int screen_height = 200;
-int startup_delay = 0;
+int startup_delay = 1000;
 int show_endoom = 1;

 // These are the last screen width/height values that were chosen by the
diff --git a/src/i_video.c b/src/i_video.c
index 8e595c62..b8ba1758 100644
--- a/src/i_video.c
+++ b/src/i_video.c
@@ -130,7 +130,7 @@ int aspect_ratio_correct = true;
 // Time to wait for the screen to settle on startup before starting the
 // game (ms)

-int startup_delay = 0;
+int startup_delay = 1000;

 // Grab the mouse? (int type for config code)