Cleanup, control code standardisation, some command-query separation, un-hardcoding of animation state dispatches, QOL improvements to Lara's basic moveset.

This commit is contained in:
Sezz 2020-09-26 03:28:30 +10:00
parent 856d11150a
commit 2ee7059470
33 changed files with 6256 additions and 4054 deletions

View file

@ -1306,6 +1306,11 @@ unsigned short atanTab[] = {
0x2000, 0x2000
};
int GetSign(int num)
{
return (num >= 0) ? 1 : -1;
}
// fix "improperly terminated macro invocation"
// fix "expression must have integral or unscoped enum type"
short ANGLE(float angle)