Skip to content

Commit

Permalink
Did I just fix the crashing problem?
Browse files Browse the repository at this point in the history
  • Loading branch information
PoneyClairDeLune committed Sep 22, 2023
1 parent 78d34a2 commit 06a5c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cambiare/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ let Cambiare = class extends RootDisplay {
// Draw every note inside extraStates
offNotes.forEach((key) => {
let {part, note, velo, state} = extraStates[key];
let context = upThis.#sectPart[part >> 7][part & 127].cxt;
let context = upThis.#sectPart[part >> 7][part & 15].cxt;
upThis.#drawNote(context, note, velo, state, upThis.device.getPitchShift(part));
});
};
Expand Down

0 comments on commit 06a5c66

Please sign in to comment.