mirror of
https://github.com/love2d/love.git
synced 2026-08-17 11:00:31 +02:00
Source::pause (and resume, and rewind) was acting on every Source, not just itself. Fixed.
This commit is contained in:
@@ -87,17 +87,17 @@ namespace openal
|
||||
|
||||
void Source::pause()
|
||||
{
|
||||
pool->pause();
|
||||
pool->pause(this);
|
||||
}
|
||||
|
||||
void Source::resume()
|
||||
{
|
||||
pool->resume();
|
||||
pool->resume(this);
|
||||
}
|
||||
|
||||
void Source::rewind()
|
||||
{
|
||||
pool->rewind();
|
||||
pool->rewind(this);
|
||||
}
|
||||
|
||||
bool Source::isStopped() const
|
||||
|
||||
Reference in New Issue
Block a user