mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-24 21:11:39 +00:00
- fixed: The 'transparent' line flag did not work due to a leftover OPAQUE constant where floats were expected.
This commit is contained in:
parent
f77a528e13
commit
2021baf47d
1 changed files with 1 additions and 1 deletions
|
@ -1097,7 +1097,7 @@ public:
|
||||||
{
|
{
|
||||||
ld->alpha = 0.75;
|
ld->alpha = 0.75;
|
||||||
}
|
}
|
||||||
if (strifetrans2 && ld->alpha == OPAQUE)
|
if (strifetrans2 && ld->alpha == 1.)
|
||||||
{
|
{
|
||||||
ld->alpha = 0.25;
|
ld->alpha = 0.25;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue