diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2019-07-25 17:49:16 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2019-09-28 20:37:47 +0200 |
commit | 9d1ea1e7cfa256c7f5cac027382d92f658734ccb (patch) | |
tree | 39ec7cdaa8ed571137430ccbbc0a391bb27427a3 /test/audiocachetest.cc | |
parent | cd9af98abdce1fe3759e786d6b010a7fe3395e2c (diff) |
Add generic logger interface for propagating messages while loading drumkits to the commandline
and/or plugin UI.
Diffstat (limited to 'test/audiocachetest.cc')
-rw-r--r-- | test/audiocachetest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/audiocachetest.cc b/test/audiocachetest.cc index 1ad863e..74c7df4 100644 --- a/test/audiocachetest.cc +++ b/test/audiocachetest.cc @@ -62,12 +62,12 @@ public: // Reference file: AudioFile audio_file_ref(filename, channel); printf("audio_file_ref.load\n"); - audio_file_ref.load(); + audio_file_ref.load(nullptr); // Input file: AudioFile audio_file(filename, channel); printf("audio_file.load\n"); - audio_file.load(4096); + audio_file.load(nullptr, 4096); Settings settings; AudioCache audio_cache(settings); |