mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
Make CopyWinding const-correct.
This commit is contained in:
parent
5a2ee06787
commit
9b10304c2f
2 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ extern byte *uncompressed;
|
|||
void FreeWinding (winding_t *w);
|
||||
winding_t *NewWinding (int points);
|
||||
winding_t *ClipWinding (winding_t *in, const plane_t *split, qboolean keepon);
|
||||
winding_t *CopyWinding (winding_t *w);
|
||||
winding_t *CopyWinding (const winding_t *w);
|
||||
|
||||
void ClusterFlow (int clusternum);
|
||||
void BasePortalVis (void);
|
||||
|
|
|
@ -128,7 +128,7 @@ FreeWinding (winding_t *w)
|
|||
}
|
||||
|
||||
winding_t *
|
||||
CopyWinding (winding_t *w)
|
||||
CopyWinding (const winding_t *w)
|
||||
{
|
||||
size_t size;
|
||||
winding_t *copy;
|
||||
|
|
Loading…
Reference in a new issue