diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-14 02:21:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-14 02:21:30 +0300 |
commit | 78afa659472cc4cfca37056088ed9cb9f79845eb (patch) | |
tree | 82396c65956514c58fdd696dc71e7400bb6d1379 /src/statuseffect.cpp | |
parent | ee1fc0b63cb7f27df85c43474497b805df6e31f5 (diff) | |
download | manaverse-78afa659472cc4cfca37056088ed9cb9f79845eb.tar.gz manaverse-78afa659472cc4cfca37056088ed9cb9f79845eb.tar.bz2 manaverse-78afa659472cc4cfca37056088ed9cb9f79845eb.tar.xz manaverse-78afa659472cc4cfca37056088ed9cb9f79845eb.zip |
Remove default parameters from soundmanager.
Diffstat (limited to 'src/statuseffect.cpp')
-rw-r--r-- | src/statuseffect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statuseffect.cpp b/src/statuseffect.cpp index 0ff4b2b6a..5892a95e5 100644 --- a/src/statuseffect.cpp +++ b/src/statuseffect.cpp @@ -59,7 +59,7 @@ StatusEffect::~StatusEffect() void StatusEffect::playSFX() const { if (!mSFXEffect.empty()) - soundManager.playSfx(mSFXEffect); + soundManager.playSfx(mSFXEffect, 0, 0); } void StatusEffect::deliverMessage() const |