mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +00:00
Fix a OpenGL backend DeleteTexture crash
This commit is contained in:
parent
f073218532
commit
dcf944be9c
1 changed files with 4 additions and 0 deletions
|
|
@ -1333,8 +1333,12 @@ EXPORT void HWRAPI(DeleteTexture) (GLMipmap_t *pTexInfo)
|
||||||
{
|
{
|
||||||
if (head->next)
|
if (head->next)
|
||||||
head->next->prev = head->prev;
|
head->next->prev = head->prev;
|
||||||
|
else // no next -> tail is being deleted -> update TexCacheTail
|
||||||
|
TexCacheTail = head->prev;
|
||||||
if (head->prev)
|
if (head->prev)
|
||||||
head->prev->next = head->next;
|
head->prev->next = head->next;
|
||||||
|
else // no prev -> head is being deleted -> update TexCacheHead
|
||||||
|
TexCacheHead = head->next;
|
||||||
free(head);
|
free(head);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue