Fixed love.audio.stop() not rewinding streaming Sources.

This commit is contained in:
Alex Szpakowski
2015-04-26 21:22:04 -03:00
parent 33e1d2736d
commit f29567160a
+1
View File
@@ -182,6 +182,7 @@ void Pool::stop()
for (const auto &i : playing)
{
i.first->stopAtomic();
i.first->rewindAtomic();
i.first->release();
available.push(i.second);
}