Fixed HMM_TanF

This commit is contained in:
StrangeZak
2016-07-31 09:05:39 -07:00
parent cd4f29a703
commit 4fc4e53a60

View File

@@ -386,7 +386,7 @@ HMM_TanF(float Radians)
{
float Result = 0;
Result = cosf(Radians);
Result = tanf(Radians);
return(0);
}