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

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

View file

@ -80,7 +80,7 @@ inline int Sin(int ang)
inline int Cos(int ang)
{
return costable[ang & 2047];
return sintable[(ang + 512) & 2047];
}
enum SurfaceType {