- Blood: Replace internals of Sin() to use sintable[] array instead of costable[] array.

This commit is contained in:
Mitch Richters 2021-10-30 17:25:10 +11:00 committed by Christoph Oelckers
parent ead877450d
commit 79b3e10f2a

View file

@ -75,7 +75,7 @@ void trigInit();
inline int Sin(int ang)
{
return costable[(ang - 512) & 2047];
return sintable[ang & 2047];
}
inline int Cos(int ang)