mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
Fix PNG tRNS length checks
This commit is contained in:
parent
bc2efc4870
commit
fda03ee4ca
1 changed files with 2 additions and 2 deletions
|
@ -2274,7 +2274,7 @@ void R_LoadPNG(const char *name, byte **pic, int *width, int *height)
|
|||
{
|
||||
case PNG_ColourType_Grey :
|
||||
{
|
||||
if(!ChunkHeaderLength == 2)
|
||||
if(ChunkHeaderLength != 2)
|
||||
{
|
||||
CloseBufferedFile(ThePNG);
|
||||
|
||||
|
@ -2296,7 +2296,7 @@ void R_LoadPNG(const char *name, byte **pic, int *width, int *height)
|
|||
|
||||
case PNG_ColourType_True :
|
||||
{
|
||||
if(!ChunkHeaderLength == 6)
|
||||
if(ChunkHeaderLength != 6)
|
||||
{
|
||||
CloseBufferedFile(ThePNG);
|
||||
|
||||
|
|
Loading…
Reference in a new issue