fix(nds): remove all top baselines

This commit is contained in:
2026-02-27 02:03:48 +01:00
parent ed7397b46f
commit f3a6928cd7
20 changed files with 57 additions and 71 deletions

View File

@@ -116,7 +116,6 @@ onRender((ctx) => {
? store.intro.stage3Opacity
: store.outro.stage1Opacity;
ctx.textBaseline = "top";
ctx.font = "10px NDS10";
ctx.fillStyle = "#515151";
@@ -135,7 +134,7 @@ onRender((ctx) => {
const pressedKey: `${typeof selected.value}Pressed` = `${button}Pressed`;
assets[isPressed ? pressedKey : button].draw(ctx, x + 1, y + 1);
ctx.fillText(text, x + 36, y + 11);
ctx.fillText(text, x + 36, y + 11 + 9);
}
});
</script>