1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-15 06:06:04 +00:00

Match retail BossMo_DrawCore (#1907)

This commit is contained in:
cadmic 2024-03-04 09:22:23 -08:00 committed by GitHub
parent 9c09dcd4cd
commit 63a95da5db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2696,7 +2696,8 @@ void BossMo_DrawCore(Actor* thisx, PlayState* play) {
sp84 = this->subCamAt.z - this->subCamEye.z; sp84 = this->subCamAt.z - this->subCamEye.z;
temp = SQ(sp8C) + SQ(sp84); temp = SQ(sp8C) + SQ(sp84);
sp7C = Math_FAtan2F(sp8C, sp84); sp7C = Math_FAtan2F(sp8C, sp84);
sp78 = -Math_FAtan2F(sp88, sqrtf(temp)); temp = sqrtf(temp);
sp78 = -Math_FAtan2F(sp88, temp);
sp6C.x = 0.0f; sp6C.x = 0.0f;
sp6C.y = 0.0f; sp6C.y = 0.0f;