[saco] Update CGame::UpdateFarClippingPlane()

This commit is contained in:
RD42 2024-08-14 23:01:34 +08:00
parent 9d80ae64b8
commit a03988d085

View File

@ -705,7 +705,7 @@ void CGame::UpdateFarClippingPlane()
if(pPlayerPed) {
if(GetActiveInterior() == 0) {
fFarClip = 1250.0f - (pPlayerPed->entity.mat->pos.Z + pPlayerPed->entity.mat->pos.Z);
fFarClip = 1250.0f - (pPlayerPed->entity.mat->pos.Z * 2.0f);
if(fFarClip < 700.0f) {
fFarClip = 700.0f;
}