mirror of
https://git.code.sf.net/p/quake/game-source
synced 2025-02-16 17:01:41 +00:00
fix for Array going from free to dealloc
This commit is contained in:
parent
14bd241c8e
commit
d352e0529f
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ Waypoint Loading from file
|
|||
+(void)clearAll
|
||||
{
|
||||
if (waypoint_array)
|
||||
[waypoint_array free];
|
||||
[waypoint_array dealloc];
|
||||
waypoint_init ();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue