mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-23 22:11:01 +00:00
The remaining errors on a GCC 6.3 setup
This commit is contained in:
parent
7d49129f25
commit
9f08890866
2 changed files with 1 additions and 2 deletions
|
|
@ -582,7 +582,7 @@ static void HWR_RenderPlane(sector_t *sector, extrasubsector_t *xsub, boolean is
|
|||
if (nrPlaneVerts < 3) //not even a triangle ?
|
||||
return;
|
||||
|
||||
if (nrPlaneVerts > UINT16_MAX) // FIXME: exceeds plVerts size
|
||||
if ((UINT32)nrPlaneVerts > UINT16_MAX) // FIXME: exceeds plVerts size
|
||||
{
|
||||
CONS_Debug(DBG_RENDER, "polygon size of %d exceeds max value of %d vertices\n", nrPlaneVerts, UINT16_MAX);
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -213,7 +213,6 @@ void SplitScreen_OnChange(void)
|
|||
}
|
||||
else
|
||||
{
|
||||
INT32 i;
|
||||
secondarydisplayplayer = consoleplayer;
|
||||
thirddisplayplayer = consoleplayer;
|
||||
fourthdisplayplayer = consoleplayer;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue