diff options
author | andreas128 <Andreas> | 2017-03-26 11:46:02 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-03-26 11:46:02 +0200 |
commit | e45d89bdd7ad54bf4fcd4f3220a35ec1d80e94bf (patch) | |
tree | d956fdd337c5eb638dcd1b72d19915f8f25ac476 /src | |
parent | 887d270a8327da46a89d8e5375f172db778f0ff9 (diff) | |
download | dabmod-e45d89bdd7ad54bf4fcd4f3220a35ec1d80e94bf.tar.gz dabmod-e45d89bdd7ad54bf4fcd4f3220a35ec1d80e94bf.tar.bz2 dabmod-e45d89bdd7ad54bf4fcd4f3220a35ec1d80e94bf.zip |
Fix m_running in ModPlugin
Diffstat (limited to 'src')
-rw-r--r-- | src/ModPlugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ModPlugin.cpp b/src/ModPlugin.cpp index 74db5f9..c39d883 100644 --- a/src/ModPlugin.cpp +++ b/src/ModPlugin.cpp @@ -92,6 +92,7 @@ PipelinedModCodec::~PipelinedModCodec() void PipelinedModCodec::start_pipeline_thread() { + m_running = true; m_thread = std::thread(&PipelinedModCodec::process_thread, this); } |