Skip to content

Commit 8e05512

Browse files
committed
- add FRISCO.lev heightmap hack code (disabled)
1 parent ca15bfc commit 8e05512

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

routines/regions_d1.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,13 @@ void CDriver1LevelMap::FindSurface(const VECTOR_NOPAD& position, VECTOR_NOPAD& o
595595
outPlane.surfaceType = (int)SurfaceType::Grass;
596596
}
597597
}
598+
#if 0
599+
// FRISCO hack
600+
if (position.vx > -345000 && position.vx < -328500 && position.vz < 267000 && position.vz > 250500)
601+
{
602+
outPoint.vy = -1500;
603+
}
604+
#endif
598605
}
599606

600607
int CDriver1LevelMap::GetSurfaceIndex(const VECTOR_NOPAD& position) const

0 commit comments

Comments
 (0)