From 0b23c14b9d69965a382a547b98970cbfa6590c81 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Tue, 11 Feb 2020 06:35:21 +0000 Subject: [PATCH] SW: Fix potential blank 3DR logo From JFSW commit 18d1c68893693e68d0ce7d41bd1eacbec5655d4f git-svn-id: https://svn.eduke32.com/eduke32@8625 1a8010ca-5511-0410-912e-c29ae57300e0 # Conflicts: # source/sw/src/game.cpp --- source/sw/src/game.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/source/sw/src/game.cpp b/source/sw/src/game.cpp index c3f01360d..2110bcbdb 100644 --- a/source/sw/src/game.cpp +++ b/source/sw/src/game.cpp @@ -1464,14 +1464,15 @@ void LogoLevel(void) DSPRINTF(ds,"About to display 3drealms pic..."); MONO_PRINT(ds); - twod->ClearScreen(); - rotatesprite(0, 0, RS_SCALE, 0, THREED_REALMS_PIC, 0, 0, TITLE_ROT_FLAGS, 0, 0, xdim - 1, ydim - 1); - videoNextPage(); //FadeIn(0, 3); inputState.ClearAllInput(); while (TRUE) { + twod->ClearScreen(); + rotatesprite(0, 0, RS_SCALE, 0, THREED_REALMS_PIC, 0, 0, TITLE_ROT_FLAGS, 0, 0, xdim - 1, ydim - 1); + videoNextPage(); + handleevents(); // taken from top of faketimerhandler