mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 03:00:38 +00:00
Polymer: include wall[].ypanning in wall invalidation logic.
Fixes bug reported here: http://forums.duke4.net/topic/1348-mapster32-problems-and-bugs/page__view__findpost__p__213759 git-svn-id: https://svn.eduke32.com/eduke32@4833 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
3a741de9fe
commit
a20a7878bb
1 changed files with 5 additions and 2 deletions
|
@ -2842,6 +2842,9 @@ static float calc_ypancoef(char curypanning, int16_t curpicnum, int32_t dopancor
|
|||
}
|
||||
}
|
||||
|
||||
#define NBYTES_WALL_CSTAT_THROUGH_YPANNING \
|
||||
(offsetof(walltype, ypanning)+sizeof(wall[0].ypanning) - offsetof(walltype, cstat))
|
||||
|
||||
static void polymer_updatewall(int16_t wallnum)
|
||||
{
|
||||
int16_t nwallnum, nnwallnum, curpicnum, wallpicnum, walloverpicnum, nwallpicnum;
|
||||
|
@ -2908,7 +2911,7 @@ static void polymer_updatewall(int16_t wallnum)
|
|||
(w->invalidid == invalid) &&
|
||||
(wallpicnum == w->picnum_anim) &&
|
||||
(walloverpicnum == w->overpicnum_anim) &&
|
||||
!Bmemcmp(&wal->cstat, &w->cstat, offsetof(walltype, ypanning) - offsetof(walltype, cstat)) &&
|
||||
!Bmemcmp(&wal->cstat, &w->cstat, NBYTES_WALL_CSTAT_THROUGH_YPANNING) &&
|
||||
((nwallnum < 0 || nwallnum > numwalls) ||
|
||||
((nwallpicnum == w->nwallpicnum) &&
|
||||
(wall[nwallnum].xpanning == w->nwallxpanning) &&
|
||||
|
@ -2923,7 +2926,7 @@ static void polymer_updatewall(int16_t wallnum)
|
|||
{
|
||||
w->invalidid = invalid;
|
||||
|
||||
Bmemcpy(&w->cstat, &wal->cstat, offsetof(walltype, ypanning) - offsetof(walltype, cstat));
|
||||
Bmemcpy(&w->cstat, &wal->cstat, NBYTES_WALL_CSTAT_THROUGH_YPANNING);
|
||||
|
||||
w->picnum_anim = wallpicnum;
|
||||
w->overpicnum_anim = walloverpicnum;
|
||||
|
|
Loading…
Reference in a new issue