convert more files to UTF-8.
It was mostly degree signs causing these issues.
This commit is contained in:
parent
243006987d
commit
e27cbe5bd9
5 changed files with 9 additions and 9 deletions
2
src/common/thirdparty/math/fastsin.cpp
vendored
2
src/common/thirdparty/math/fastsin.cpp
vendored
|
|
@ -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]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue