Skip to content

Commit

Permalink
Positioning fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
PoneyClairDeLune committed Jul 5, 2024
1 parent faeb888 commit 3de56bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cambiare/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -414,11 +414,11 @@ let Cambiare = class extends RootDisplay {
e.ccVis.strokeStyle = `#fff`;
e.ccVis.lineWidth = 1;
e.ccVis.beginPath();
e.ccVis.moveTo(84.5, 22);
e.ccVis.moveTo(84.5, 22.5);
if (pan == 64) {
e.ccVis.lineTo(84.5, 4);
} else {
e.ccVis.lineTo(84.5 + 18 * Math.sin(panRotateCache), 22 - 18 * Math.cos(panRotateCache));
e.ccVis.lineTo(84.5 + 18 * Math.sin(panRotateCache), 22.5 - 18.5 * Math.cos(panRotateCache));
};
e.ccVis.stroke();
};
Expand Down

0 comments on commit 3de56bd

Please sign in to comment.