- fixed: The flags for texture colorization were not passed to the backend.

This commit is contained in:
Christoph Oelckers 2020-06-11 12:41:13 +02:00
parent 95c232d31a
commit b0964101a5
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ struct FVector4PalEntry
r = newvalue.r * normScale;
g = newvalue.g * normScale;
b = newvalue.b * normScale;
a = 1;
a = newvalue.a;
return *this;
}