diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-12-08 16:25:12 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-12-08 16:25:12 -0500 |
| commit | a3170e5d69e1a62bd2103634ba97f681ac47ed77 (patch) | |
| tree | 579b932cc66c4649bedba3ad5e60daae0e213d0c /src/d/d_ky_thunder.cpp | |
| parent | 009b4fb35e5a1d010fcf98590dfbcc7071fc28f8 (diff) | |
add default params to a lot more functions
Diffstat (limited to 'src/d/d_ky_thunder.cpp')
| -rw-r--r-- | src/d/d_ky_thunder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_ky_thunder.cpp b/src/d/d_ky_thunder.cpp index e327e205..b1f67226 100644 --- a/src/d/d_ky_thunder.cpp +++ b/src/d/d_ky_thunder.cpp @@ -45,7 +45,7 @@ dThunder_c::~dThunder_c() { BOOL dThunder_c::execute() { mBrk.setPlaySpeed(1.0f); if (mBrk.play()) { - mDoAud_seStart(JA_SE_OBJ_THUNDER_FAR, &mPos, 0, 0); + mDoAud_seStart(JA_SE_OBJ_THUNDER_FAR, &mPos); fopKyM_Delete(this); } return TRUE; @@ -191,7 +191,7 @@ s32 dThunder_c::create() { mPosNeg.x = -mPos.x; mPosNeg.y = -mPos.y; mPosNeg.z = -mPos.z; - mDoAud_seStart(JA_SE_OBJ_THUNDER_FAR, &mPosNeg, 0, 0); + mDoAud_seStart(JA_SE_OBJ_THUNDER_FAR, &mPosNeg); } return cPhs_COMPLEATE_e; |
