diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-09-02 10:30:02 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-09-02 10:30:02 +0200 |
commit | e37c5f5048bb440140dc56ce773d105fc2129385 (patch) | |
tree | 0dfe0ab9faec524fd1ee085c6cf763aa15484331 /src/audiofile.cc | |
parent | 6a96bcf1659d07cd3a7f7e65519007abfaeda2a0 (diff) |
Implement master bleed control in the instrument parser and engine.
Diffstat (limited to 'src/audiofile.cc')
-rw-r--r-- | src/audiofile.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/audiofile.cc b/src/audiofile.cc index e274e61..a8e9d4a 100644 --- a/src/audiofile.cc +++ b/src/audiofile.cc @@ -35,9 +35,10 @@ #include <hugin.hpp> -AudioFile::AudioFile(const std::string& filename, std::size_t filechannel) +AudioFile::AudioFile(const std::string& filename, std::size_t filechannel, bool main) : filename(filename) , filechannel(filechannel) + , main(main) , magic{this} { } |