From 8387b5e2cd9741fff27b69a13b4d5010137864ca Mon Sep 17 00:00:00 2001 From: James R Date: Mon, 25 Mar 2024 17:01:18 -0700 Subject: [PATCH] Don't draw OpenGL loading screen for credits attract demos --- src/hardware/hw_bsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hardware/hw_bsp.c b/src/hardware/hw_bsp.c index 897b646a2..6db5a3319 100644 --- a/src/hardware/hw_bsp.c +++ b/src/hardware/hw_bsp.c @@ -584,7 +584,7 @@ static void loading_status(void) char s[16]; int x, y; - if (gamestate == GS_TITLESCREEN && titlemapinaction) + if ((gamestate == GS_TITLESCREEN && titlemapinaction) || demo.attract == DEMO_ATTRACT_CREDITS) { return; }