Fixed a very boring mistake ignored by MSVC

This commit is contained in:
smallmodel 2024-02-27 00:02:20 +01:00
parent ea14ab5664
commit 36af9e6589
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -1150,15 +1150,15 @@ void CM_TraceThroughTerrainCollide(traceWork_t *tw, terrainCollide_t *tc)
int i;
if (tw->bounds[0][0] >= tc->vBounds[1][0] || tw->bounds[1][0] <= tc->vBounds[0][0]) {
return qfalse;
return;
}
if (tw->bounds[0][1] >= tc->vBounds[1][1] || tw->bounds[1][1] <= tc->vBounds[0][1]) {
return qfalse;
return;
}
if (tw->bounds[0][2] >= tc->vBounds[1][2] || tw->bounds[1][2] <= tc->vBounds[0][2]) {
return qfalse;
return;
}
g_trace.tw = tw;