mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 23:18:59 +00:00
Small inner fix
This commit is contained in:
parent
63666391d4
commit
7f3b51dd17
1 changed files with 8 additions and 2 deletions
|
@ -1106,8 +1106,14 @@ CPickups::DoPickUpEffects(CEntity *entity)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (doInnerGlow)
|
if (doInnerGlow)
|
||||||
CCoronas::RegisterCorona((uintptr)entity + 8, 126, 69, 121, 255, entity->GetPosition(), 1.2f, 50.0f,
|
CCoronas::RegisterCorona(
|
||||||
CCoronas::TYPE_STAR, CCoronas::FLARE_NONE, CCoronas::REFLECTION_ON, CCoronas::LOSCHECK_OFF, CCoronas::STREAK_ON, 0.f);
|
#ifdef FIX_BUGS
|
||||||
|
(uintptr)entity + 8 + 4,
|
||||||
|
#else
|
||||||
|
(uintptr)entity + 9,
|
||||||
|
#endif
|
||||||
|
126, 69, 121, 255, entity->GetPosition(), 1.2f, 50.0f,
|
||||||
|
CCoronas::TYPE_STAR, CCoronas::FLARE_NONE, CCoronas::REFLECTION_ON, CCoronas::LOSCHECK_OFF, CCoronas::STREAK_ON, 0.0f);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue