Fix empty texture check for ptcl

This commit is contained in:
KillzXGaming 2019-05-06 19:14:35 -04:00
parent bcd77f29ca
commit de96b5ee82
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View file

@ -485,7 +485,7 @@ namespace FirstPlugin
public bool IsEmpty()
{
if (Width == 0 || Height == 0 || SurfFormat == 0)
if (Width == 0 || Height == 0)
return true;
else
return false;