- Fixed: Skyboxes never cleared planes when a 3D floor was in view.

SVN r4164 (trunk)
This commit is contained in:
Randy Heit 2013-02-23 05:15:32 +00:00
commit 2919bdf4fe
4 changed files with 8 additions and 6 deletions

View file

@ -140,6 +140,7 @@ void R_3D_EnterSkybox()
height_top = NULL;
height_cur = NULL;
height_max = -1;
fakeActive = 0;
CurrentSkybox++;
}
@ -157,6 +158,7 @@ void R_3D_LeaveSkybox()
height_top = current.height_top;
height_cur = current.height_cur;
height_max = current.height_max;
fakeActive = height_top != NULL;
CurrentSkybox--;
}