mirror of
https://github.com/ZDoom/gzdoom-last-svn.git
synced 2025-06-04 03:00:47 +00:00
* Updated to ZDoom r3156:
- Fixed: The shareware -file check wasn't working anymore. - Damn integer type confusion... :( - GCC warning fixes (GCC stupidity for the most part.) git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@1199 b0f79afe-0144-0410-b225-9a4edf0717df
This commit is contained in:
parent
26999e7cc2
commit
dcf55d28a6
40 changed files with 160 additions and 126 deletions
|
@ -1329,10 +1329,8 @@ void R_Subsector (subsector_t *sub)
|
|||
fake3D = FAKE3D_FAKECEILING;
|
||||
tempsec = *fakeFloor->model;
|
||||
tempsec.ceilingplane = *fakeFloor->bottom.plane;
|
||||
if (!(fakeFloor->flags & FF_THISINSIDE) &&
|
||||
!(fakeFloor->flags & FF_INVERTSECTOR) ||
|
||||
fakeFloor->flags & FF_THISINSIDE &&
|
||||
fakeFloor->flags & FF_INVERTSECTOR)
|
||||
if ((!(fakeFloor->flags & FF_THISINSIDE) && !(fakeFloor->flags & FF_INVERTSECTOR)) ||
|
||||
(fakeFloor->flags & FF_THISINSIDE && fakeFloor->flags & FF_INVERTSECTOR))
|
||||
{
|
||||
tempsec.SetTexture(sector_t::ceiling, tempsec.GetTexture(sector_t::floor));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue