Merge pull request #230 from SanyaSho/patch/null-sprite-crash

Add missing NULL check from original MP branch
This commit is contained in:
nillerusr 2023-04-08 18:12:22 +03:00 committed by GitHub
commit e392686d3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -417,6 +417,9 @@ IMaterial *CEngineSprite::GetMaterial( RenderMode_t nRenderMode, int nFrame )
IMaterial *pMaterial = m_material[nRenderMode];
if( !pMaterial )
return NULL;
IMaterialVar* pFrameVar = pMaterial->FindVarFast( "$frame", &frameCache );
if ( pFrameVar )
{