- 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 committed by alexey.lysiuk
parent 3e08a8e220
commit e30b380e85

View file

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