From ac0061c277474372a08598362ae1dd9e8a7c0320 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sat, 8 Nov 2025 23:28:02 -0500 Subject: graphics: update ui padding --- graphics/src/render.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graphics/src') diff --git a/graphics/src/render.rs b/graphics/src/render.rs index 3232bf3..408d51c 100644 --- a/graphics/src/render.rs +++ b/graphics/src/render.rs @@ -57,13 +57,13 @@ const WALL_HEIGHT: u16 = 7; const VIEW_DISTANCE: u16 = 6; /// The size of padding in the UI -const UI_PADDING: u16 = 6; +const UI_PADDING: u16 = 8; /// The size of the font const FONT_SIZE: u16 = TEXTURE_SIZE; /// The height of the UI -const UI_HEIGHT: u16 = (UI_PADDING + FONT_SIZE) * 3 + UI_PADDING; +const UI_HEIGHT: u16 = (UI_PADDING + FONT_SIZE) * 3; /// The size of a tile drawn to the screen const TILE_SIZE: u16 = TEXTURE_SIZE * 3; -- cgit v1.2.3-freya