mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 11:39:03 +00:00
fixed NE bug
This commit is contained in:
parent
38d2854226
commit
5ca0d6c6cf
1 changed files with 8 additions and 1 deletions
|
@ -1853,7 +1853,14 @@ CVehicle* CStoredCar::RestoreCar()
|
|||
CStreaming::RequestModel(m_nModelIndex, STREAMFLAGS_DEPENDENCY);
|
||||
if (!CStreaming::HasModelLoaded(m_nModelIndex))
|
||||
return nil;
|
||||
#ifdef FIX_BUGS
|
||||
CVehicleModelInfo* pModelInfo = (CVehicleModelInfo*)CModelInfo::GetModelInfo(m_nModelIndex);
|
||||
assert(pModelInfo);
|
||||
if (pModelInfo->m_numComps != 0)
|
||||
#endif
|
||||
{
|
||||
CVehicleModelInfo::SetComponentsToUse(m_nVariationA, m_nVariationB);
|
||||
}
|
||||
#ifdef FIX_BUGS
|
||||
CVehicle* pVehicle;
|
||||
if (CModelInfo::IsBoatModel(m_nModelIndex))
|
||||
|
|
Loading…
Reference in a new issue