We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8480006 commit 595c2b8Copy full SHA for 595c2b8
src/NoteData.cpp
@@ -201,7 +201,7 @@ const vector<NoteInfo>& NoteData::SerializeNoteData(const vector<float>& etaner)
201
int rowNotes = 0;
202
for (size_t q = 0; q < tracks; q++)
203
{
204
- if(m_TapNotes[q][NonEmptyRowVector[i]].IsNote())
+ if(GetTapNote(q, NonEmptyRowVector[i]).IsNote())
205
206
rowNotes |= 1 << q;
207
}
@@ -226,7 +226,7 @@ vector<NoteInfo2>& NoteData::SerializeNoteData2(const vector<float>& etaner) {
226
227
228
229
- if (m_TapNotes[q][NonEmptyRowVector[i]].IsNote())
+ if (GetTapNote(q, NonEmptyRowVector[i]).IsNote())
230
231
232
0 commit comments