From 98a53f955971d14f215c9fde63773e4337297215 Mon Sep 17 00:00:00 2001 From: Johnny Richard Date: Thu, 15 Dec 2022 17:23:16 +0100 Subject: styling: Fix screen missing semicolon This patch fixes the warnings raised by *make* command. Signed-off-by: Johnny Richard --- src/screen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen.h b/src/screen.h index 15ba91e..d9bb9ee 100644 --- a/src/screen.h +++ b/src/screen.h @@ -39,7 +39,7 @@ typedef struct screen { uint16_t width; uint16_t height; SDL_Renderer* renderer; - SDL_Window* window + SDL_Window* window; } screen_t; bool screen_init(screen_t *screen); -- cgit v1.2.3