Fix compile error

Var was renamed.
This commit is contained in:
Kawe Mazidjatari 2023-02-23 23:47:58 +01:00
parent 9573cfa8cb
commit ad66236a90

View File

@ -53,7 +53,7 @@ void ClearNavMeshForHull(int hullSize)
//-----------------------------------------------------------------------------
uint32_t GetHullMaskById(int hullId)
{
Assert(hullId >= NULL && hullId < SDK_ARRAYSIZE(g_pHullMasks)); // Programmer error.
Assert(hullId >= NULL && hullId < SDK_ARRAYSIZE(g_HullMasks)); // Programmer error.
return (hullId + g_HullMasks[hullId]);
}