1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-18 08:13:12 +00:00

Logic fix in CParticleObject::UpdateAll

This commit is contained in:
Sergeanur 2019-10-12 12:08:09 +03:00
parent 2977164918
commit 3b1ae087b1

View file

@ -399,10 +399,10 @@ CParticleObject::UpdateAll(void)
{ {
nextpobj = pobj->m_pNext; nextpobj = pobj->m_pNext;
if ( counter == counter ) if ( counter == frame )
{ {
pobj->UpdateFar(); pobj->UpdateFar();
counter += 32; frame += 32;
} }
counter++; counter++;