summaryrefslogtreecommitdiff
path: root/src/powerlist.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2019-07-25 17:49:16 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2019-09-28 20:37:47 +0200
commit9d1ea1e7cfa256c7f5cac027382d92f658734ccb (patch)
tree39ec7cdaa8ed571137430ccbbc0a391bb27427a3 /src/powerlist.cc
parentcd9af98abdce1fe3759e786d6b010a7fe3395e2c (diff)
Add generic logger interface for propagating messages while loading drumkits to the commandline
and/or plugin UI.
Diffstat (limited to 'src/powerlist.cc')
-rw-r--r--src/powerlist.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/powerlist.cc b/src/powerlist.cc
index c78b071..23d9795 100644
--- a/src/powerlist.cc
+++ b/src/powerlist.cc
@@ -81,7 +81,7 @@ const Channel* PowerList::getMasterChannel()
const Channel* c = pair.first;
AudioFile* af = pair.second;
- af->load(LOAD_SIZE);
+ af->load(nullptr, LOAD_SIZE);
float silence{0.f};
std::size_t silence_length{4u};