Remove custom IsNullVector function.

This commit is contained in:
shavit 2018-01-26 05:56:24 +02:00
parent 008f60f248
commit d7f9ed3186

View File

@ -2522,10 +2522,3 @@ void CopyArray(const any[] from, any[] to, int size)
to[i] = from[i];
}
}
#if SOURCEMOD_V_MAJOR == 1 && SOURCEMOD_V_MINOR < 9
bool IsNullVector(float vec[3])
{
return (vec[0] == NULL_VECTOR[0] && vec[1] == NULL_VECTOR[1] && vec[2] == NULL_VECTOR[2]);
}
#endif