Translate function - removed redundant 1.0f

This commit is contained in:
Kyle De'Vir
2016-06-04 20:28:12 +10:00
parent 6ab8772438
commit c3fdab8ff2

View File

@@ -792,7 +792,6 @@ HMM_Translate(hmm_vec3 Translation)
Result.Elements[0][3] = Translation.X;
Result.Elements[1][3] = Translation.Y;
Result.Elements[2][3] = Translation.Z;
Result.Elements[3][3] = 1.0f;
return (Result);
}