Skip to content

Commit

Permalink
Fix to node culling
Browse files Browse the repository at this point in the history
  • Loading branch information
Paril committed Aug 20, 2021
1 parent 0c9a742 commit abe7009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/bsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -808,8 +808,8 @@ LOAD_EXT(Leafs)
out->numleaffaces = numleaffaces;

for (j = 0; j < 3; j++) {
out->mins[j] = LittleLong(in->mins[j]);
out->maxs[j] = LittleLong(in->maxs[j]);
out->mins[j] = LittleFloat(in->mins[j]);
out->maxs[j] = LittleFloat(in->maxs[j]);
}

out->parent = NULL;
Expand Down

0 comments on commit abe7009

Please sign in to comment.