mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-16 01:37:55 +00:00
Fix empty texture check for ptcl
This commit is contained in:
parent
bcd77f29ca
commit
de96b5ee82
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue