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:
parent
9c09dcd4cd
commit
63a95da5db
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue