- re-fixed FTexture::CheckTrans

The original broken code had it always reset the translucency info to 'not present'.
The first fix completely removed that line, although it was merely misplaced, but still necessary to avoid constant re-checking of the same texture.
This commit is contained in:
Christoph Oelckers 2016-02-02 11:37:39 +01:00
parent 046541c7ef
commit 22e9fc9b76
1 changed files with 1 additions and 0 deletions

View File

@ -520,6 +520,7 @@ void FTexture::CheckTrans(unsigned char * buffer, int size, int trans)
return; return;
} }
} }
gl_info.mIsTransparent = 0;
} }
} }
} }