| 71 | } |
| 72 | |
| 73 | void CSoundDriver::LoadAPU(CAPUInterface &apu) { |
| 74 | apu_ = &apu; |
| 75 | |
| 76 | // Setup all channels |
| 77 | ForeachTrack([&] (CChannelHandler &ch, CTrackerChannel &) { |
| 78 | ch.InitChannel(apu, m_iVibratoTable, parent_); |
| 79 | }); |
| 80 | } |
| 81 | |
| 82 | void CSoundDriver::ConfigureDocument() { |
| 83 | SetupVibrato(); |
no test coverage detected