mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Make the test and vis set pointers const.
This commit is contained in:
parent
281c5f185d
commit
4ccb4a4667
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue