mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Compile fix -- remove (void)alpha from DoScreenWipe
This commit is contained in:
parent
f41951bfb1
commit
7f88e13492
1 changed files with 1 additions and 3 deletions
|
|
@ -2229,7 +2229,7 @@ EXPORT void HWRAPI(DrawIntermissionBG)(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do screen fades!
|
// Do screen fades!
|
||||||
EXPORT void HWRAPI(DoScreenWipe)()
|
EXPORT void HWRAPI(DoScreenWipe)(void)
|
||||||
{
|
{
|
||||||
INT32 texsize = 2048;
|
INT32 texsize = 2048;
|
||||||
float xfix, yfix;
|
float xfix, yfix;
|
||||||
|
|
@ -2254,8 +2254,6 @@ EXPORT void HWRAPI(DoScreenWipe)()
|
||||||
1.0f, 1.0f
|
1.0f, 1.0f
|
||||||
};
|
};
|
||||||
|
|
||||||
(void)alpha;
|
|
||||||
|
|
||||||
// Use a power of two texture, dammit
|
// Use a power of two texture, dammit
|
||||||
if(screen_width <= 1024)
|
if(screen_width <= 1024)
|
||||||
texsize = 1024;
|
texsize = 1024;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue