1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-08-23 23:41:24 +00:00

Fix typos found by codespell (#2229)

This commit is contained in:
cadmic 2024-09-25 21:21:00 -07:00 committed by GitHub
parent f7a0117e7d
commit bccb219ea3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 71 additions and 71 deletions

View file

@ -138,7 +138,7 @@ void EnBoom_Fly(EnBoom* this, PlayState* play) {
if ((target != &player->actor) && ((target->update == NULL) || (ABS(yawDiff) > 0x4000))) {
//! @bug This condition is why the boomerang will randomly fly off in a the down left direction sometimes.
// If the actor targetted is not Link and the difference between the 2 y angles is greater than 0x4000,
// If the actor targeted is not Link and the difference between the 2 y angles is greater than 0x4000,
// the moveTo pointer is nulled and it flies off in a seemingly random direction.
this->moveTo = NULL;
} else {