partially Revert "- pass shade values to sky renderer"

This reverts commit 380864d6fb.

The report this was supposed to address was bogus.
This commit is contained in:
Christoph Oelckers 2023-01-28 09:21:53 +01:00
parent 2778ee72cd
commit acac74715f

View file

@ -91,7 +91,7 @@ void initSkyInfo(HWDrawInfo *di, HWSkyInfo* sky, sectortype* sector, int plane)
pe.a = 230;
sky->fadecolor = pe;
sky->shade = clamp<int>(plane == plane_ceiling ? sector->ceilingshade : sector->floorshade, 0, numshades - 1);
sky->shade = 0;// clamp(plane == plane_ceiling ? sector->ceilingshade : sector->floorshade, 0, numshades - 1);
sky->texture = skytex;
}