when replaying, splash setting disable BOTH (save a lot of time)

This commit is contained in:
2024-11-26 11:06:09 -06:00
committed by Celtic Minstrel
parent c35ba7cc62
commit ec811168c5

View File

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