Make the test and vis set pointers const.

This commit is contained in:
Bill Currie 2013-03-07 14:28:15 +09:00
parent 281c5f185d
commit 4ccb4a4667

View file

@ -197,7 +197,8 @@ static void
RecursiveClusterFlow (int clusternum, threaddata_t *thread, pstack_t *prevstack) RecursiveClusterFlow (int clusternum, threaddata_t *thread, pstack_t *prevstack)
{ {
int i; int i;
set_t *test, *might, *vis; set_t *might;
const set_t *test, *vis;
qboolean more; qboolean more;
cluster_t *cluster; cluster_t *cluster;
pstack_t stack; pstack_t stack;