From 0fbe718e3a5624b344e72f397669f50f26b1b668 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sat, 7 Sep 2024 17:03:02 -0400 Subject: [PATCH] Add `-nofullscreen` to the command line This has no real effect on SDL since we run with the `dummy` driver that just does everything offscreen. However, Chocolate Doom by default pauses for a second on startup if running fullscreen, so that the display has time to settle if the monitor changes modes. Since statcheck runs through hundreds of fairly short demos, this equates to a useless pause that makes the whole run take much longer. --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 7138f4f43..9ba526a7b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -14,7 +14,7 @@ export SDL_VIDEODRIVER = dummy SOURCE_PORT_NAME = chocolate-doom SOURCE_PORT := $(shell which $(SOURCE_PORT_NAME) || echo missing_source_port) DOOMOPTS = -mb 16 -nodraw -noblit -nosound \ - -noautoload -nogui -nograbmouse + -noautoload -nogui -nograbmouse -nofullscreen ALL_DEMOS = $(patsubst %,demos/%,$(shell cat demos.txt)) OUTPUTS = $(subst .lmp,.txt,$(subst demos/,output/,$(ALL_DEMOS)))