mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-23 21:44:00 +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"
|
#include "AudioInjector.h"
|
||||||
|
|
||||||
AudioInjector::AudioInjector(QObject* parent) :
|
AudioInjector::AudioInjector(QObject* parent) :
|
||||||
QObject(parent)
|
QObject(parent),
|
||||||
|
_sound(NULL),
|
||||||
|
_options(),
|
||||||
|
_shouldStop(false)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
AudioInjector::AudioInjector(Sound* sound, const AudioInjectorOptions& injectorOptions) :
|
AudioInjector::AudioInjector(Sound* sound, const AudioInjectorOptions& injectorOptions) :
|
||||||
_sound(sound),
|
_sound(sound),
|
||||||
_options(injectorOptions)
|
_options(injectorOptions),
|
||||||
|
_shouldStop(false)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue