1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-07-01 11:03:47 +00:00

Small inner fix

This commit is contained in:
Sergeanur 2020-10-17 16:04:11 +03:00
parent 63666391d4
commit 7f3b51dd17

View file

@ -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);
} }
} }