mirror of https://github.com/Nofated095/re-GTA.git
commit
fdfffbcba9
|
@ -23,6 +23,10 @@ void CGangs::Initialize(void)
|
|||
Gang[GANG_HOODS].m_nVehicleMI = MI_HOODS;
|
||||
Gang[GANG_7].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)
|
||||
|
|
|
@ -6,8 +6,6 @@ struct CGangInfo
|
|||
{
|
||||
int32 m_nVehicleMI;
|
||||
int8 m_nPedModelOverride;
|
||||
int8 field_5;
|
||||
int16 field_6;
|
||||
eWeaponType m_Weapon1;
|
||||
eWeaponType m_Weapon2;
|
||||
|
||||
|
@ -46,6 +44,6 @@ public:
|
|||
static CGangInfo* GetGangInfo(int16 gang) { return &Gang[gang]; }
|
||||
|
||||
private:
|
||||
|
||||
static CGangInfo(&Gang)[NUM_GANGS];
|
||||
|
||||
};
|
||||
|
|
|
@ -1250,10 +1250,6 @@ void CReplay::RestoreStuffFromMem(void)
|
|||
memcpy(CRadar::ms_RadarTrace, pRadarBlips, sizeof(CBlip) * NUMRADARBLIPS);
|
||||
delete[] pRadarBlips;
|
||||
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);
|
||||
CWorld::Players[0] = PlayerInfo;
|
||||
int i = CPools::GetPedPool()->GetSize();
|
||||
|
|
Loading…
Reference in New Issue