Compile fix -- remove (void)alpha from DoScreenWipe

This commit is contained in:
mazmazz 2018-12-27 22:25:13 -05:00
parent 531d42c1bd
commit cc3b57a96c

View file

@ -2229,7 +2229,7 @@ EXPORT void HWRAPI(DrawIntermissionBG)(void)
}
// Do screen fades!
EXPORT void HWRAPI(DoScreenWipe)()
EXPORT void HWRAPI(DoScreenWipe)(void)
{
INT32 texsize = 2048;
float xfix, yfix;
@ -2254,8 +2254,6 @@ EXPORT void HWRAPI(DoScreenWipe)()
1.0f, 1.0f
};
(void)alpha;
// Use a power of two texture, dammit
if(screen_width <= 1024)
texsize = 1024;