From ec811168c5b03a4a5440654d5c162b2bdc6fad0e Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Tue, 26 Nov 2024 11:06:09 -0600 Subject: [PATCH] when replaying, splash setting disable BOTH (save a lot of time) --- src/game/boe.startup.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/game/boe.startup.cpp b/src/game/boe.startup.cpp index 8a6cccf4..e0a28483 100644 --- a/src/game/boe.startup.cpp +++ b/src/game/boe.startup.cpp @@ -141,6 +141,11 @@ static rectangle view_rect() { } void show_logo(cFramerateLimiter& fps_limiter) { + // The spiderweb logo displays regardless of "show startup splash." + // However, when testing via replays this wastes a LOT of time + // cumulatively. So I've made it skippable in replay mode. + if(replaying && !get_int_pref("ShowStartupSplash", true)) return; + rectangle whole_window = view_rect(); if(get_int_pref("DisplayMode") != 5)