Skip to content

Commit

Permalink
Update MSPHelper.js
Browse files Browse the repository at this point in the history
  • Loading branch information
druckgott committed Nov 18, 2024
1 parent 2fdfc87 commit 636a282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/msp/MSPHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ MspHelper.prototype.process_data = function(dataHandler) {
}
}

const directionMask = (mask >> 27) & 0x3F;
const directionMask = (mask >> 26) & 0x3F;
const directions = [];
for (let directionLetterIndex = 0; directionLetterIndex < ledDirectionLetters.length; directionLetterIndex++) {
if (bit_check(directionMask, directionLetterIndex)) {
Expand Down

0 comments on commit 636a282

Please sign in to comment.