mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-11 04:56:49 +03:00
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:
parent
856d11150a
commit
2ee7059470
33 changed files with 6256 additions and 4054 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue