summaryrefslogtreecommitdiff
path: root/src/resources/soundeffect.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-10-25 23:54:03 +0300
committerAndrei Karas <akaras@inbox.ru>2017-10-25 23:54:03 +0300
commit03378679c6e7b5833ddca59d9aacc22a22f7654c (patch)
treefd3849e22cc1a6fc3e8858a0e530122a94ddd281 /src/resources/soundeffect.cpp
parentc1090f81650347ef03a1d50783f8b77b02646f9e (diff)
downloadplus-03378679c6e7b5833ddca59d9aacc22a22f7654c.tar.gz
plus-03378679c6e7b5833ddca59d9aacc22a22f7654c.tar.bz2
plus-03378679c6e7b5833ddca59d9aacc22a22f7654c.tar.xz
plus-03378679c6e7b5833ddca59d9aacc22a22f7654c.zip
Add sdlmusichelper with some SDL/SDL2 functions.
Diffstat (limited to 'src/resources/soundeffect.cpp')
-rw-r--r--src/resources/soundeffect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/soundeffect.cpp b/src/resources/soundeffect.cpp
index db7c5d462..55a48abd0 100644
--- a/src/resources/soundeffect.cpp
+++ b/src/resources/soundeffect.cpp
@@ -34,7 +34,7 @@ bool SoundEffect::play(const int loops, const int volume,
{
Mix_VolumeChunk(mChunk, volume);
- return Mix_PlayChannel(channel, mChunk, loops) != -1;
+ return Mix_PlayChannelTimed(channel, mChunk, loops, -1) != -1;
}
int SoundEffect::calcMemoryLocal() const