mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 11:39:03 +00:00
Fix use of integer in RemoveBuildingsNotInArea call
This commit is contained in:
parent
9ea3549743
commit
987e09515b
1 changed files with 1 additions and 1 deletions
|
@ -382,7 +382,7 @@ CGameLogic::RestorePlayerStuffDuringResurrection(CPlayerPed *pPlayerPed, CVector
|
|||
CWorld::ClearExcitingStuffFromArea(pos, 4000.0f, true);
|
||||
pPlayerPed->RestoreHeadingRate();
|
||||
CGame::currArea = AREA_MAIN_MAP;
|
||||
CStreaming::RemoveBuildingsNotInArea(0);
|
||||
CStreaming::RemoveBuildingsNotInArea(AREA_MAIN_MAP);
|
||||
TheCamera.SetCameraDirectlyInFrontForFollowPed_CamOnAString();
|
||||
TheCamera.Restore();
|
||||
CReferences::RemoveReferencesToPlayer();
|
||||
|
|
Loading…
Reference in a new issue