mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
Polymer: fix stupid typo that broke r2057
git-svn-id: https://svn.eduke32.com/eduke32@2063 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
98ae1ce50a
commit
8b7af4f486
1 changed files with 2 additions and 2 deletions
|
@ -7855,8 +7855,8 @@ ACTOR_STATIC void G_MoveEffectors(void) //STATNUM 3
|
||||||
actor[i].lightptr = &prlights[actor[i].lightId];
|
actor[i].lightptr = &prlights[actor[i].lightId];
|
||||||
|
|
||||||
// Hack in case polymer_addlight tweaked the horiz value
|
// Hack in case polymer_addlight tweaked the horiz value
|
||||||
if (prlights[i].horiz != SH)
|
if (actor[i].lightptr->horiz != SH)
|
||||||
SH = prlights[i].horiz;
|
SH = actor[i].lightptr->horiz;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue