| 2782 | } |
| 2783 | |
| 2784 | void BambooTracker::replaceInstrumentInPattern(int songNum, int beginTrack, int beginOrder, int beginStep, |
| 2785 | int endTrack, int endStep, int newInstNum) |
| 2786 | { |
| 2787 | comMan_.invoke(std::make_unique<ReplaceInstrumentInPatternCommand>( |
| 2788 | mod_, songNum, beginTrack, beginOrder, beginStep, endTrack, endStep, newInstNum)); |
| 2789 | } |
| 2790 | |
| 2791 | size_t BambooTracker::getPatternSizeFromOrderNumber(int songNum, int orderNum) const |
| 2792 | { |
no test coverage detected