| 112 | } |
| 113 | |
| 114 | bool CInstrument2A03::AssignedSamples() const |
| 115 | { |
| 116 | // Returns true if there are assigned samples in this instrument |
| 117 | |
| 118 | for (int i = 0; i < NOTE_COUNT; ++i) |
| 119 | if (GetSampleIndex(i) != NO_DPCM) |
| 120 | return true; |
| 121 | return false; |
| 122 | } |
| 123 | |
| 124 | std::shared_ptr<ft0cc::doc::dpcm_sample> CInstrument2A03::GetDSample(int MidiNote) const // // // |
| 125 | { |
no outgoing calls
no test coverage detected