| 59 | } |
| 60 | |
| 61 | void CChannelHandler::InitChannel(CAPUInterface &apu, array_view<int> VibTable, CSoundGenBase *pSoundGen) // // // |
| 62 | { |
| 63 | // Called from main thread |
| 64 | |
| 65 | m_pAPU = &apu; |
| 66 | if (VibTable.size() == 256u) // // // |
| 67 | m_iVibratoTable = VibTable; |
| 68 | m_pSoundGen = pSoundGen; |
| 69 | |
| 70 | m_bDelayEnabled = false; |
| 71 | } |
| 72 | |
| 73 | void CChannelHandler::ConfigureDocument(const CFamiTrackerModule &modfile) { // // // |
| 74 | SetVibratoStyle(modfile.GetVibratoStyle()); |