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/being/being.cpp | |
parent | ee1fc0b63cb7f27df85c43474497b805df6e31f5 (diff) | |
download | mv-78afa659472cc4cfca37056088ed9cb9f79845eb.tar.gz mv-78afa659472cc4cfca37056088ed9cb9f79845eb.tar.bz2 mv-78afa659472cc4cfca37056088ed9cb9f79845eb.tar.xz mv-78afa659472cc4cfca37056088ed9cb9f79845eb.zip |
Remove default parameters from soundmanager.
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r-- | src/being/being.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index 618989bd5..daf8cd542 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -1946,8 +1946,9 @@ void Being::logic() restrict2 const int time2 = tick_time; if (time2 > mNextSound.time) { - soundManager.playSfx(sound->sound, mNextSound.x, mNextSound.y); - + soundManager.playSfx(sound->sound, + mNextSound.x, + mNextSound.y); mNextSound.sound = nullptr; mNextSound.time = time2 + sound->delay; } |