diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/instrument.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/instrument.h b/src/instrument.h index 4076b48..0441ed4 100644 --- a/src/instrument.h +++ b/src/instrument.h @@ -29,6 +29,7 @@ #include <string> #include <vector> #include <memory> +#include <deque> #include "rangemap.h" #include "powerlist.h" @@ -79,7 +80,7 @@ private: void finalise(); ///< Signal instrument that no more samples will be added. std::vector<Sample*> samplelist; - std::vector<InstrumentChannel> instrument_channels; + std::deque<InstrumentChannel> instrument_channels; size_t lastpos; float mod; |