diff --git a/HandmadeMath.h b/HandmadeMath.h index eb72c85..7f54423 100644 --- a/HandmadeMath.h +++ b/HandmadeMath.h @@ -323,7 +323,7 @@ HMMDEF hmm_vec4 operator/(hmm_vec4 Left, hmm_vec4 Right); HINLINE float HMM_ToRadians(float Degrees) { - float Result = Degrees * (Pi32 / 180.0f); + float Result = Degrees * (HMM_PI32 / 180.0f); return (Result); }