mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-13 05:57:05 +03:00
9 lines
213 B
C++
9 lines
213 B
C++
#include "math.h"
|
|
#include "vars.h"
|
|
|
|
// fix "improperly terminated macro invocation"
|
|
// fix "expression must have integral or unscoped enum type"
|
|
short ANGLE(short ang)
|
|
{
|
|
return short((ang * 65536.0) / 360.0);
|
|
}
|