mirror of
https://github.com/overte-org/overte.git
synced 2025-04-24 12:13:36 +02:00
make sure shouldStop for injector defaults to false
This commit is contained in:
parent
f78c81e073
commit
a8a53e35dd
1 changed files with 6 additions and 2 deletions
|
@ -22,14 +22,18 @@
|
|||
#include "AudioInjector.h"
|
||||
|
||||
AudioInjector::AudioInjector(QObject* parent) :
|
||||
QObject(parent)
|
||||
QObject(parent),
|
||||
_sound(NULL),
|
||||
_options(),
|
||||
_shouldStop(false)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
AudioInjector::AudioInjector(Sound* sound, const AudioInjectorOptions& injectorOptions) :
|
||||
_sound(sound),
|
||||
_options(injectorOptions)
|
||||
_options(injectorOptions),
|
||||
_shouldStop(false)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue