mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Corrects E1L7 rotating lava bug and minor indentation quirk.
git-svn-id: https://svn.eduke32.com/eduke32@1264 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
6e2bac1c92
commit
a4070de923
1 changed files with 3 additions and 1 deletions
|
@ -1380,7 +1380,8 @@ static int32_t polymer_initsector(int16_t sectnum)
|
||||||
return (1);
|
return (1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int32_t polymer_updatesector(int16_t sectnum){
|
static int32_t polymer_updatesector(int16_t sectnum)
|
||||||
|
{
|
||||||
_prsector* s;
|
_prsector* s;
|
||||||
sectortype *sec;
|
sectortype *sec;
|
||||||
walltype *wal;
|
walltype *wal;
|
||||||
|
@ -1427,6 +1428,7 @@ static int32_t polymer_updatesector(int16_t sectnum){
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((s->controlstate == 2) ||
|
if ((s->controlstate == 2) ||
|
||||||
|
needfloor ||
|
||||||
(sec->floorz != s->floorz) ||
|
(sec->floorz != s->floorz) ||
|
||||||
(sec->ceilingz != s->ceilingz) ||
|
(sec->ceilingz != s->ceilingz) ||
|
||||||
(sec->floorheinum != s->floorheinum) ||
|
(sec->floorheinum != s->floorheinum) ||
|
||||||
|
|
Loading…
Reference in a new issue