qbsp: constify FindPlane plane argument

Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
Kevin Shanahan 2013-02-17 21:35:22 +10:30
parent 04c8c73ef6
commit d152382691
2 changed files with 4 additions and 4 deletions

View File

@ -237,7 +237,7 @@ PlaneHash_Init(void)
* - Returns a global plane number and the side that will be the front
*/
static int
NewPlane(vec3_t normal, vec_t dist, int *side)
NewPlane(const vec3_t normal, const vec_t dist, int *side)
{
plane_t *plane;
vec_t len;
@ -262,10 +262,10 @@ NewPlane(vec3_t normal, vec_t dist, int *side)
* - Returns a global plane number and the side that will be the front
*/
int
FindPlane(plane_t *plane, int *side)
FindPlane(const plane_t *plane, int *side)
{
const int bins[] = { 0, 1, -1 };
plane_t *p;
const plane_t *p;
int hash, h;
int i;

View File

@ -431,7 +431,7 @@ typedef struct brush_s {
void FreeBrushsetBrushes(brush_t *pBrushList);
void PlaneHash_Init(void);
int FindPlane(plane_t *dplane, int *side);
int FindPlane(const plane_t *plane, int *side);
//=============================================================================