GBA BIOS: Fix a typo in ArcTan2

This commit is contained in:
Jeffrey Pfau 2016-08-14 23:59:20 -07:00
parent b1618cbed3
commit 7212854cdd
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ static int16_t _ArcTan2(int16_t x, int16_t y) {
} else if (x >= -y) {
return _ArcTan((y << 14) / x) + 0x10000;
}
return 0xC000 - _ArcTan((x << 14 / y));
return 0xC000 - _ArcTan((x << 14) / y);
}
}