mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-29 07:22:07 +00:00
- Fix wrong case 'NULL' from previous commit. (I sure hope that patch was
tested!) SVN r3434 (trunk)
This commit is contained in:
parent
365311ec36
commit
c05345668c
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ void FTextureManager::InitAnimated (void)
|
|||
(BYTE(anim_p[21]) << 16) | (BYTE(anim_p[22]) << 24);
|
||||
|
||||
// SMMU-style swirly hack? Don't apply on already-warping texture
|
||||
if (animspeed > 65535 && tex1 != null && !tex1->bWarped)
|
||||
if (animspeed > 65535 && tex1 != NULL && !tex1->bWarped)
|
||||
{
|
||||
FTexture *warper = new FWarp2Texture (tex1);
|
||||
ReplaceTexture (pic1, warper, false);
|
||||
|
|
Loading…
Reference in a new issue