mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 14:39:03 +00:00
Logic fix in CParticleObject::UpdateAll
This commit is contained in:
parent
2977164918
commit
3b1ae087b1
1 changed files with 2 additions and 2 deletions
|
@ -399,10 +399,10 @@ CParticleObject::UpdateAll(void)
|
|||
{
|
||||
nextpobj = pobj->m_pNext;
|
||||
|
||||
if ( counter == counter )
|
||||
if ( counter == frame )
|
||||
{
|
||||
pobj->UpdateFar();
|
||||
counter += 32;
|
||||
frame += 32;
|
||||
}
|
||||
|
||||
counter++;
|
||||
|
|
Loading…
Reference in a new issue