Minor fixes

This commit is contained in:
TehRealSalt 2019-08-10 09:50:42 -04:00
parent 71f35c7f5b
commit 978c4f7e24
2 changed files with 3 additions and 2 deletions

View file

@ -220,7 +220,7 @@ void F_StartIntro(void)
F_WipeStartScreen(); F_WipeStartScreen();
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 31); V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 31);
F_WipeEndScreen(); F_WipeEndScreen();
F_RunWipe(wipedefs[wipe_level_final], false, "FADEMAP0", false, false); F_RunWipe(wipedefs[wipe_intro_toblack], false, "FADEMAP0", false, false);
} }
if (introtoplay) if (introtoplay)

View file

@ -412,6 +412,7 @@ void F_RunWipe(UINT8 wipetype, boolean drawMenu, const char *colormap, boolean r
(void)drawMenu; (void)drawMenu;
(void)colormap; (void)colormap;
(void)reverse; (void)reverse;
(void)encorewiggle;
#else #else
tic_t nowtime; tic_t nowtime;
UINT8 wipeframe = 0; UINT8 wipeframe = 0;
@ -462,7 +463,7 @@ void F_RunWipe(UINT8 wipetype, boolean drawMenu, const char *colormap, boolean r
#endif #endif
F_DoWipe(fmask, fcolor, reverse); F_DoWipe(fmask, fcolor, reverse);
if (encorewiggle) if (encorewiggle)
F_DoEncoreWiggle(wipeframe); F_DoEncoreWiggle(wipeframe); // Can't think of a better way to run this on fades, unfortunately.
I_OsPolling(); I_OsPolling();
I_UpdateNoBlit(); I_UpdateNoBlit();