Browse Source

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

Add missing NULL check from original MP branch
pull/234/head
nillerusr 1 year ago committed by GitHub
parent
commit
e392686d3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      game/client/spritemodel.cpp

5
game/client/spritemodel.cpp

@ -417,6 +417,9 @@ IMaterial *CEngineSprite::GetMaterial( RenderMode_t nRenderMode, int nFrame ) @@ -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 )
{
@ -539,4 +542,4 @@ void CEngineSprite::DrawFrameOfSize( RenderMode_t nRenderMode, int frame, int x, @@ -539,4 +542,4 @@ void CEngineSprite::DrawFrameOfSize( RenderMode_t nRenderMode, int frame, int x,
meshBuilder.End();
pMesh->Draw();
}
}

Loading…
Cancel
Save