Merge branch 'fix-playintro-crash' into 'next'

Fix intro crash

See merge request STJr/SRB2!1310
This commit is contained in:
James R 2020-12-13 22:17:25 -05:00
commit 760e083c30
1 changed files with 3 additions and 0 deletions

View File

@ -1747,6 +1747,9 @@ void *W_CachePatchNum(lumpnum_t lumpnum, INT32 tag)
void W_UnlockCachedPatch(void *patch)
{
if (!patch)
return;
// The hardware code does its own memory management, as its patches
// have different lifetimes from software's.
#ifdef HWRENDER