summaryrefslogtreecommitdiff
path: root/src/soundmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/soundmanager.cpp')
-rw-r--r--src/soundmanager.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/soundmanager.cpp b/src/soundmanager.cpp
index 1e8561ca7..21cf9a528 100644
--- a/src/soundmanager.cpp
+++ b/src/soundmanager.cpp
@@ -516,8 +516,7 @@ void SoundManager::playGuiSfx(const std::string &path)
if (sample != nullptr)
{
logger->log("SoundManager::playGuiSfx() Playing: %s", path.c_str());
- const int ret = static_cast<const int>(
- sample->play(0, 120, mGuiChannel));
+ const int ret = static_cast<int>(sample->play(0, 120, mGuiChannel));
if (ret != -1)
mGuiChannel = ret;
if (!mCacheSounds)