1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-29 07:37:06 +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)
CCoronas::RegisterCorona((uintptr)entity + 8, 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.f);
CCoronas::RegisterCorona(
#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);
}
}