mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- fixed: The floor plane's alpha was not initialized.
SVN r3003 (trunk)
This commit is contained in:
parent
2fcf1af21b
commit
5e7753d7e8
1 changed files with 1 additions and 1 deletions
|
@ -1420,7 +1420,7 @@ void P_LoadSectors (MapData * map)
|
|||
ss->nextsec = -1; //jff 2/26/98 add fields to support locking out
|
||||
ss->prevsec = -1; // stair retriggering until build completes
|
||||
|
||||
ss->SetAlpha(sector_t::ceiling, FRACUNIT);
|
||||
ss->SetAlpha(sector_t::floor, FRACUNIT);
|
||||
ss->SetAlpha(sector_t::ceiling, FRACUNIT);
|
||||
ss->SetXScale(sector_t::floor, FRACUNIT); // [RH] floor and ceiling scaling
|
||||
ss->SetYScale(sector_t::floor, FRACUNIT);
|
||||
|
|
Loading…
Reference in a new issue