diff options
-rw-r--r-- | hud.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -22,10 +22,10 @@ const int hud_offset_y = 4; void hud_clip(Renderer* r) { Rect clip; - clip.x = hud_offset_x; - clip.y = hud_offset_y; - clip.w = background_rect.w; - clip.h = background_rect.h; + clip.x = hud_offset_x - 1; + clip.y = hud_offset_y - 1; + clip.w = background_rect.w + 2; + clip.h = background_rect.h + 2; ren_clip(r, &clip); } |