added default to a switch statement to make it clear we didn't forget any case

This commit is contained in:
myT 2022-05-26 22:25:25 +02:00
parent 96e4d2d7cb
commit dcb3c80998

View file

@ -177,9 +177,9 @@ static qbool R_LightCullSurface( const surfaceType_t* surface, const dlight_t* d
const srfTriangles_t* tris = (const srfTriangles_t*)surface;
return R_LightCullBounds( dl, tris->bounds[0], tris->bounds[1] );
}
default:
return qfalse;
}
return qfalse;
}