mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-20 14:01:15 +00:00
Name Actor_PlaySfx
and Player_PlaySfx
(#1469)
* name two main actor sfx functions * adjust comments * fix double s in player * fix commas
This commit is contained in:
parent
f181c2f10e
commit
be22b836f6
213 changed files with 1424 additions and 1414 deletions
|
@ -567,7 +567,7 @@ void EnGe2_Update(Actor* thisx, PlayState* play) {
|
|||
this->timer = 100;
|
||||
this->stateFlags |= GE2_STATE_KO;
|
||||
this->actor.speedXZ = 0.0f;
|
||||
Audio_PlayActorSfx2(&this->actor, NA_SE_VO_SK_CRASH);
|
||||
Actor_PlaySfx(&this->actor, NA_SE_VO_SK_CRASH);
|
||||
} else {
|
||||
this->actionFunc(this, play);
|
||||
|
||||
|
@ -613,7 +613,7 @@ void EnGe2_UpdateStunned(Actor* thisx, PlayState* play2) {
|
|||
this->timer = 100;
|
||||
this->stateFlags |= GE2_STATE_KO;
|
||||
this->actor.speedXZ = 0.0f;
|
||||
Audio_PlayActorSfx2(&this->actor, NA_SE_VO_SK_CRASH);
|
||||
Actor_PlaySfx(&this->actor, NA_SE_VO_SK_CRASH);
|
||||
}
|
||||
CollisionCheck_SetAC(play, &play->colChkCtx, &this->collider.base);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue