mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-03-24 20:02:38 +00:00
The remaining errors on a GCC 6.3 setup
This commit is contained in:
parent
2e3afaa7f5
commit
85ab4015eb
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…
Reference in a new issue