mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-13 14:24:08 +00:00
VC replays
This commit is contained in:
parent
4d1182bdb1
commit
f7d5021ac5
12 changed files with 574 additions and 145 deletions
|
@ -2745,7 +2745,11 @@ CWaterLevel::RenderSeaBirds()
|
|||
void
|
||||
CWaterLevel::RenderShipsOnHorizon()
|
||||
{
|
||||
#ifdef FIX_BUGS
|
||||
CVector cur_pos = FindPlayerCoors();
|
||||
#else
|
||||
CVector cur_pos = FindPlayerPed()->GetPosition();
|
||||
#endif
|
||||
|
||||
static CVector prev_pos(0.0f, 0.0f, 0.0f);
|
||||
static CVector prev_front(0.0f, 0.0f, 0.0f);
|
||||
|
@ -2847,7 +2851,11 @@ CWaterLevel::HandleSeaLifeForms()
|
|||
void
|
||||
CWaterLevel::HandleBeachToysStuff(void)
|
||||
{
|
||||
#ifdef FIX_BUGS
|
||||
CVector cur_pos = FindPlayerCoors();
|
||||
#else
|
||||
CVector cur_pos = FindPlayerPed()->GetPosition();
|
||||
#endif
|
||||
|
||||
static bool bBeachBallInit = true;
|
||||
static CVector FirstBeachBallPos = cur_pos;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue