Fix more warnings

This commit is contained in:
Tim Angus 2014-09-01 13:03:06 +01:00
parent 6665ea4a49
commit 7277d8d6e7
3 changed files with 8 additions and 4 deletions

View file

@ -1614,7 +1614,7 @@ int R_StitchPatches( int grid1num, int grid2num ) {
}
for (m = 0; m < 2; m++) {
if (grid2->height >= MAX_GRID_SIZE)
if (!grid2 || grid2->height >= MAX_GRID_SIZE)
break;
if (m) offset2 = grid2->width-1;
else offset2 = 0;