mirror of
https://github.com/chocolate-doom/statcheck.git
synced 2024-11-23 12:52:21 +00:00
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:
parent
2c3653bbdb
commit
0fbe718e3a
1 changed files with 1 additions and 1 deletions
|
@ -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)))
|
||||
|
|
Loading…
Reference in a new issue