summaryrefslogtreecommitdiffstats
path: root/src/ModPlugin.cpp
diff options
context:
space:
mode:
authorandreas128 <Andreas>2017-03-26 11:46:02 +0200
committerandreas128 <Andreas>2017-03-26 11:46:02 +0200
commite45d89bdd7ad54bf4fcd4f3220a35ec1d80e94bf (patch)
treed956fdd337c5eb638dcd1b72d19915f8f25ac476 /src/ModPlugin.cpp
parent887d270a8327da46a89d8e5375f172db778f0ff9 (diff)
downloaddabmod-e45d89bdd7ad54bf4fcd4f3220a35ec1d80e94bf.tar.gz
dabmod-e45d89bdd7ad54bf4fcd4f3220a35ec1d80e94bf.tar.bz2
dabmod-e45d89bdd7ad54bf4fcd4f3220a35ec1d80e94bf.zip
Fix m_running in ModPlugin
Diffstat (limited to 'src/ModPlugin.cpp')
-rw-r--r--src/ModPlugin.cpp1
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);
}