1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-15 22:19:07 +00:00

Fix crash on minimize + reactivate

This commit is contained in:
fgenesis 2013-07-26 02:15:40 +02:00
parent cf6556b94d
commit f825ad9fb7

View file

@ -977,7 +977,7 @@ FMOD_RESULT OpenALChannel::setPaused(const bool _paused, const bool setstate)
} }
else if ((!_paused) && (initial || ((state == AL_INITIAL) || (state == AL_PAUSED)))) else if ((!_paused) && (initial || ((state == AL_INITIAL) || (state == AL_PAUSED))))
{ {
if (initial) if (initial && decoder)
{ {
decoder->setForceMono(mindist || maxdist); // HACK: this is set for positional sounds. decoder->setForceMono(mindist || maxdist); // HACK: this is set for positional sounds.
decoder->start(sound->isLooping()); decoder->start(sound->isLooping());