|
|
@ -411,7 +411,8 @@ int process_faces(const world_t* world) |
|
|
|
|
|
|
|
|
ps1bsp_plane_t outPlane = { 0 }; |
|
|
ps1bsp_plane_t outPlane = { 0 }; |
|
|
outPlane.normal = convertNormal(plane->normal); |
|
|
outPlane.normal = convertNormal(plane->normal); |
|
|
outPlane.dist = (int)(plane->dist * 4); |
|
|
|
|
|
|
|
|
outPlane.dist = (short)(plane->dist * 4); |
|
|
|
|
|
outPlane.type = (short)plane->type; |
|
|
|
|
|
|
|
|
outPlanes.push_back(outPlane); |
|
|
outPlanes.push_back(outPlane); |
|
|
} |
|
|
} |
|
|
|