Skip to content

Commit

Permalink
overwrite with non-transparent pixel on frame change
Browse files Browse the repository at this point in the history
  • Loading branch information
flogross89 committed Oct 24, 2024
1 parent a9affc1 commit 1499525
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export function renderNormalMode(
return drawDensityPixel(patternMapValue, 5, [255, 148, 255, 255]);
}

return [4, 4, 5, 0];
return [0, 0, 0, 255];
}

export function renderPeaksMode(
Expand Down Expand Up @@ -227,7 +227,7 @@ export function renderPeaksMode(
return drawDensityPixel(patternMapValue, 5, [255, 148, 255, 255]);
}

return [4, 4, 5, 0];
return [0, 0, 0, 255];
}

export function renderNavigationDisplay(
Expand Down

0 comments on commit 1499525

Please sign in to comment.