diff options
Diffstat (limited to 'graphics/src/render.rs')
| -rw-r--r-- | graphics/src/render.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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; |