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.
This commit is contained in:
Simon Howard 2024-09-07 17:03:02 -04:00
parent 2c3653bbdb
commit 0fbe718e3a

View file

@ -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)))