| 86 | } |
| 87 | |
| 88 | stChanNote CSongData::GetActiveNote(stChannelID Channel, unsigned Frame, unsigned Row) const { // // // |
| 89 | stChanNote Note = GetPatternOnFrame(Channel, Frame).GetNoteOn(Row); |
| 90 | for (int i = GetEffectColumnCount(Channel); i < MAX_EFFECT_COLUMNS; ++i) |
| 91 | Note.Effects[i] = { }; |
| 92 | return Note; |
| 93 | } |
| 94 | |
| 95 | void CSongData::SetPatternData(stChannelID Channel, unsigned Pattern, unsigned Row, const stChanNote &Note) // // // |
| 96 | { |
no outgoing calls
no test coverage detected