Fixed: Don't load grayscale textures as alpha
This commit is contained in:
parent
8fd5f96d83
commit
10e7d8d4ff
1 changed files with 3 additions and 0 deletions
|
@ -656,6 +656,9 @@ static void BuildColoredVersionForOneBitmap(const CBuildInfo &bi, const std::str
|
|||
{
|
||||
if (is.open(fullInputBitmapPath))
|
||||
{
|
||||
// 8 bits textures are grayscale
|
||||
srcBitmap.loadGrayscaleAsAlpha(false);
|
||||
|
||||
depth = srcBitmap.load(is);
|
||||
is.close();
|
||||
|
||||
|
|
Loading…
Reference in a new issue