mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +00:00
Shadowed declaration and unused parameters
This commit is contained in:
parent
31ee16181f
commit
aecba1ec40
1 changed files with 7 additions and 3 deletions
|
|
@ -7077,14 +7077,18 @@ void HWR_DoTintedWipe(UINT8 wipenum, UINT8 scrnnum)
|
||||||
HWR_DoWipe(wipenum, scrnnum);
|
HWR_DoWipe(wipenum, scrnnum);
|
||||||
}
|
}
|
||||||
|
|
||||||
void HWR_DoLevelWipe(UINT8 wipenum, UINT8 scrnnum, UINT8 wipecolorfill)
|
void HWR_DoLevelWipe(UINT8 wipenum, UINT8 scrnnum, UINT8 colfill)
|
||||||
{
|
{
|
||||||
#ifdef LEVELWIPES
|
#ifndef LEVELWIPES
|
||||||
|
(void)wipenum;
|
||||||
|
(void)scrnnum;
|
||||||
|
(void)colfill;
|
||||||
|
#else
|
||||||
if (!HWR_WipeCheck(wipenum, scrnnum))
|
if (!HWR_WipeCheck(wipenum, scrnnum))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
HWR_EndScreenWipe();
|
HWR_EndScreenWipe();
|
||||||
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, wipecolorfill);
|
V_DrawFill(0, 0, BASEVIDWIDTH, BASEVIDHEIGHT, colfill);
|
||||||
HWR_StartScreenWipe();
|
HWR_StartScreenWipe();
|
||||||
HWR_GetFadeMask(wipelumpnum);
|
HWR_GetFadeMask(wipelumpnum);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue