mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
[ruamoko] Clear dtable list on reset
The list of all allocated dispatch tables is used to free all the tables when the progs are reloaded. Not clearing the list meant that the next instance (second map change) corrupted the list.
This commit is contained in:
parent
3c17efe91b
commit
70aaafda10
1 changed files with 1 additions and 0 deletions
|
@ -110,6 +110,7 @@ static void
|
|||
dtable_reset (probj_t *probj)
|
||||
{
|
||||
PR_RESRESET (probj->dtables);
|
||||
probj->dtable_list = 0;
|
||||
}
|
||||
|
||||
static inline dtable_t *
|
||||
|
|
Loading…
Reference in a new issue