summaryrefslogtreecommitdiff
path: root/src/being
diff options
context:
space:
mode:
Diffstat (limited to 'src/being')
-rw-r--r--src/being/being.cpp5
-rw-r--r--src/being/localplayer.cpp4
2 files changed, 5 insertions, 4 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;
}
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp
index 3eb2a32af..53ab03d16 100644
--- a/src/being/localplayer.cpp
+++ b/src/being/localplayer.cpp
@@ -2126,9 +2126,9 @@ void LocalPlayer::updateMusic() const
if (str != soundManager.getCurrentMusicFile())
{
if (str.empty())
- soundManager.fadeOutMusic();
+ soundManager.fadeOutMusic(1000);
else
- soundManager.fadeOutAndPlayMusic(str);
+ soundManager.fadeOutAndPlayMusic(str, 1000);
}
}
}