From c7360be7fa36890a37e9b0197f72fd34c6edc325 Mon Sep 17 00:00:00 2001 From: Robin Chappatte Date: Sat, 25 Apr 2026 06:51:26 +0200 Subject: [PATCH] fix scene margin values --- src/consts/scene.asm | 6 +++--- visuals.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/consts/scene.asm b/src/consts/scene.asm index fc4807d..5ac4cad 100644 --- a/src/consts/scene.asm +++ b/src/consts/scene.asm @@ -3,7 +3,7 @@ ; -> 15x11 tiles map ; => 17x17 pixels tile -pub const scene.margin_top = 0 -pub const scene.margin_bottom = 0 +pub const scene.margin_top = 2 +pub const scene.margin_bottom = 3 pub const scene.margin_left = 0 -pub const scene.margin_right = 0 \ No newline at end of file +pub const scene.margin_right = 1 \ No newline at end of file diff --git a/visuals.md b/visuals.md index 70e00bc..d8419ab 100644 --- a/visuals.md +++ b/visuals.md @@ -23,4 +23,4 @@ Resolution ID | Tile size (in pixels) | Comment -- | -- | -- `0` | `5x5` | with a reminder of 5 pixels en width and 5 pixels in height. `1` | `10x10` | with a reminder of 10w and 10h -`2` | `17x17` | no reminder +`2` | `17x17` | with a reminder of 1w and 5h