From 731f084d304118cb6e52b144996146ba193e2eb8 Mon Sep 17 00:00:00 2001 From: Stephen Simpson Date: Tue, 11 Oct 2011 00:47:26 -0500 Subject: fixed missing dependence on soundPlayer in NewerCodehandler.yaml --- src/bossMegaGoomba.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/bossMegaGoomba.cpp b/src/bossMegaGoomba.cpp index 02a7426..a9069ca 100644 --- a/src/bossMegaGoomba.cpp +++ b/src/bossMegaGoomba.cpp @@ -358,7 +358,7 @@ void daMegaGoomba_c::executeState_Grow() { } //TODO grow sound //if(this->timer == 60.0) - // playSound(SE_GROW); + // PlaySound(this, SE_GROW); if (this->timer > 170.0) { doStateChange(&StateID_Walk); } @@ -384,7 +384,7 @@ void daMegaGoomba_c::executeState_Shrink() { //TODO shrink sound //if(this->timer == 2.0) - // playSound(SE_SHRINK); + // PlaySound(this, SE_SHRINK); if (this->timer > 60.0) { doStateChange(&StateID_Walk); } } @@ -517,7 +517,7 @@ void daMegaGoomba_c::executeState_Walk() { //FIXME test case for sound effects case 3: if(this->playIt = 1) { - PlaySound(this->toPlay); + PlaySound(this, this->toPlay); this->playIt = 0; } break; -- cgit v1.2.3