diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2022-12-15 17:23:16 +0100 |
---|---|---|
committer | Fábio Maciel <6810827+fabiomaciel@users.noreply.github.com> | 2022-12-15 11:39:01 -0300 |
commit | 98a53f955971d14f215c9fde63773e4337297215 (patch) | |
tree | 4fb014e7f4f17e9fbbe672c1428bbf04ec2c1663 | |
parent | 9116be1f3b96c491d1bfd3ea1e20c88f0b104894 (diff) |
styling: Fix screen missing semicolon
This patch fixes the warnings raised by *make* command.
Signed-off-by: Johnny Richard <johnny@johnnyrichard.com>
-rw-r--r-- | src/screen.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |