mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed typo in ceiling render hack code.
This commit is contained in:
parent
59790302ec
commit
65a6866a1b
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ void HWDrawInfo::DispatchRenderHacks()
|
||||||
}
|
}
|
||||||
|
|
||||||
TMap<int, gl_subsectorrendernode*>::Iterator oci(otherCeilingPlanes);
|
TMap<int, gl_subsectorrendernode*>::Iterator oci(otherCeilingPlanes);
|
||||||
while (ofi.NextPair(pair))
|
while (oci.NextPair(pair))
|
||||||
{
|
{
|
||||||
auto sec = hw_FakeFlat(&level.sectors[pair->Key], in_area, false);
|
auto sec = hw_FakeFlat(&level.sectors[pair->Key], in_area, false);
|
||||||
glflat.ProcessSector(this, sec, SSRF_RENDERCEILING | SSRF_PLANEHACK);
|
glflat.ProcessSector(this, sec, SSRF_RENDERCEILING | SSRF_PLANEHACK);
|
||||||
|
|
Loading…
Reference in a new issue