mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Minor fixes
This commit is contained in:
parent
71f35c7f5b
commit
978c4f7e24
2 changed files with 3 additions and 2 deletions
|
|
@ -220,7 +220,7 @@ void F_StartIntro(void)
|
|||
F_WipeStartScreen();
|
||||
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, 31);
|
||||
F_WipeEndScreen();
|
||||
F_RunWipe(wipedefs[wipe_level_final], false, "FADEMAP0", false, false);
|
||||
F_RunWipe(wipedefs[wipe_intro_toblack], false, "FADEMAP0", false, false);
|
||||
}
|
||||
|
||||
if (introtoplay)
|
||||
|
|
|
|||
|
|
@ -412,6 +412,7 @@ void F_RunWipe(UINT8 wipetype, boolean drawMenu, const char *colormap, boolean r
|
|||
(void)drawMenu;
|
||||
(void)colormap;
|
||||
(void)reverse;
|
||||
(void)encorewiggle;
|
||||
#else
|
||||
tic_t nowtime;
|
||||
UINT8 wipeframe = 0;
|
||||
|
|
@ -462,7 +463,7 @@ void F_RunWipe(UINT8 wipetype, boolean drawMenu, const char *colormap, boolean r
|
|||
#endif
|
||||
F_DoWipe(fmask, fcolor, reverse);
|
||||
if (encorewiggle)
|
||||
F_DoEncoreWiggle(wipeframe);
|
||||
F_DoEncoreWiggle(wipeframe); // Can't think of a better way to run this on fades, unfortunately.
|
||||
|
||||
I_OsPolling();
|
||||
I_UpdateNoBlit();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue