mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Fix byteswapping of a node's firstface/numfaces.
I'd forgotten to fix this.
This commit is contained in:
parent
beb0b9e0fc
commit
cfb856b9cf
1 changed files with 2 additions and 2 deletions
|
@ -530,8 +530,8 @@ swap_bsp (bsp_t *bsp, int todisk, void (*cb) (const bsp_t *, void *),
|
|||
}
|
||||
node->children[0] = LittleLong (node->children[0]);
|
||||
node->children[1] = LittleLong (node->children[1]);
|
||||
node->firstface = LittleShort (node->firstface);
|
||||
node->numfaces = LittleShort (node->numfaces);
|
||||
node->firstface = LittleLong (node->firstface);
|
||||
node->numfaces = LittleLong (node->numfaces);
|
||||
}
|
||||
|
||||
// leafs
|
||||
|
|
Loading…
Reference in a new issue