summaryrefslogtreecommitdiff
path: root/src/being/being.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r--src/being/being.cpp5
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;
}