mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +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;
|
||||
}
|
||||
if (strifetrans2 && ld->alpha == OPAQUE)
|
||||
if (strifetrans2 && ld->alpha == 1.)
|
||||
{
|
||||
ld->alpha = 0.25;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue