summaryrefslogtreecommitdiff
path: root/src/bossMegaGoomba.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/bossMegaGoomba.cpp6
1 files changed, 3 insertions, 3 deletions
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;