convert more files to UTF-8.

It was mostly degree signs causing these issues.
This commit is contained in:
Christoph Oelckers 2024-01-02 21:54:29 +01:00
commit e27cbe5bd9
5 changed files with 9 additions and 9 deletions

View file

@ -57,7 +57,7 @@ __forceinline double FFastTrig::sinq1(unsigned bangle)
{
unsigned int index = bangle >> BITSHIFT;
if ((bangle &= (REMAINDER)) == 0) // This is to avoid precision problems at 180°
if ((bangle &= (REMAINDER)) == 0) // This is to avoid precision problems at 180°
{
return double(sinetable[index]);
}