summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/drumkitloader.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/drumkitloader.cc b/src/drumkitloader.cc
index 7c532b4..3fa8420 100644
--- a/src/drumkitloader.cc
+++ b/src/drumkitloader.cc
@@ -69,9 +69,13 @@ void DrumKitLoader::skip()
void DrumKitLoader::setFrameSize(size_t framesize)
{
+ DEBUG(loader, "%s pre\n", __PRETTY_FUNCTION__);
+ {
MutexAutolock l(mutex);
this->framesize = framesize;
framesize_semaphore.post(); // Signal that the framesize has been set.
+ }
+ DEBUG(loader, "%s post\n", __PRETTY_FUNCTION__);
}
bool DrumKitLoader::isDone()