mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-16 03:18:59 +00:00
commit
fdfffbcba9
3 changed files with 5 additions and 7 deletions
|
@ -23,6 +23,10 @@ void CGangs::Initialize(void)
|
||||||
Gang[GANG_HOODS].m_nVehicleMI = MI_HOODS;
|
Gang[GANG_HOODS].m_nVehicleMI = MI_HOODS;
|
||||||
Gang[GANG_7].m_nVehicleMI = -1;
|
Gang[GANG_7].m_nVehicleMI = -1;
|
||||||
Gang[GANG_8].m_nVehicleMI = -1;
|
Gang[GANG_8].m_nVehicleMI = -1;
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
for (int i = 0; i < NUM_GANGS; i++)
|
||||||
|
Gang[i].m_nPedModelOverride = -1;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void CGangs::SetGangVehicleModel(int16 gang, int32 model)
|
void CGangs::SetGangVehicleModel(int16 gang, int32 model)
|
||||||
|
|
|
@ -6,8 +6,6 @@ struct CGangInfo
|
||||||
{
|
{
|
||||||
int32 m_nVehicleMI;
|
int32 m_nVehicleMI;
|
||||||
int8 m_nPedModelOverride;
|
int8 m_nPedModelOverride;
|
||||||
int8 field_5;
|
|
||||||
int16 field_6;
|
|
||||||
eWeaponType m_Weapon1;
|
eWeaponType m_Weapon1;
|
||||||
eWeaponType m_Weapon2;
|
eWeaponType m_Weapon2;
|
||||||
|
|
||||||
|
@ -46,6 +44,6 @@ public:
|
||||||
static CGangInfo* GetGangInfo(int16 gang) { return &Gang[gang]; }
|
static CGangInfo* GetGangInfo(int16 gang) { return &Gang[gang]; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
static CGangInfo(&Gang)[NUM_GANGS];
|
static CGangInfo(&Gang)[NUM_GANGS];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1250,10 +1250,6 @@ void CReplay::RestoreStuffFromMem(void)
|
||||||
memcpy(CRadar::ms_RadarTrace, pRadarBlips, sizeof(CBlip) * NUMRADARBLIPS);
|
memcpy(CRadar::ms_RadarTrace, pRadarBlips, sizeof(CBlip) * NUMRADARBLIPS);
|
||||||
delete[] pRadarBlips;
|
delete[] pRadarBlips;
|
||||||
pRadarBlips = nil;
|
pRadarBlips = nil;
|
||||||
#ifdef FIX_REPLAY_BUGS
|
|
||||||
// NB: can only be used with fixed bug at the start of PlayBackThisFrameInterpolation
|
|
||||||
delete FindPlayerPed()->m_pWanted;
|
|
||||||
#endif
|
|
||||||
FindPlayerPed()->m_pWanted = new CWanted(PlayerWanted);
|
FindPlayerPed()->m_pWanted = new CWanted(PlayerWanted);
|
||||||
CWorld::Players[0] = PlayerInfo;
|
CWorld::Players[0] = PlayerInfo;
|
||||||
int i = CPools::GetPedPool()->GetSize();
|
int i = CPools::GetPedPool()->GetSize();
|
||||||
|
|
Loading…
Reference in a new issue