diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-03-03 15:41:03 -0600 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-03-03 15:41:03 -0600 |
commit | b8b1efc008e5ca2c455b8ab225b5d005449de851 (patch) | |
tree | 4f9a65ccf18a8b38bbe7144b3de34deed7e3dfb9 /src/effectvideo.cpp | |
parent | 5dece655469940b4752cb0dc81328c8171e2b5e7 (diff) | |
download | kamek-b8b1efc008e5ca2c455b8ab225b5d005449de851.tar.gz kamek-b8b1efc008e5ca2c455b8ab225b5d005449de851.zip |
Lots of boss fixes, working on thwomp - linking error
Diffstat (limited to 'src/effectvideo.cpp')
-rw-r--r-- | src/effectvideo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/effectvideo.cpp b/src/effectvideo.cpp index 38a7686..3aa43fb 100644 --- a/src/effectvideo.cpp +++ b/src/effectvideo.cpp @@ -6,7 +6,7 @@ #include <sfx.h> -extern "C" void *PlaySound(dEn_c *, int soundID); +extern "C" void *PlaySoundAsync(dEn_c *, int soundID); class EffectVideo : public dEn_c { @@ -72,7 +72,7 @@ int EffectVideo::onExecute() { if (this->timer == this->delay) { if (this->type == 0) { // Plays a sound - PlaySound(this, this->effect); + PlaySoundAsync(this, this->effect); } else { // Plays an Effect |