Handle common things before letting the channels play the notes
| 270 | |
| 271 | // Handle common things before letting the channels play the notes |
| 272 | void CChannelHandler::PlayNote(stChanNote NoteData) // // // |
| 273 | { |
| 274 | // // // Handle delay commands |
| 275 | if (HandleDelay(NoteData)) |
| 276 | return; |
| 277 | |
| 278 | // Let the channel play |
| 279 | HandleNoteData(NoteData); |
| 280 | } |
| 281 | |
| 282 | void CChannelHandler::WriteEchoBuffer(const stChanNote &NoteData, std::size_t Pos) |
| 283 | { |