From 3f0275b81348651d5300e44a95ba358cf22bb238 Mon Sep 17 00:00:00 2001 From: Jason Bou-Samra <154414066+bou-samra@users.noreply.github.com> Date: Wed, 9 Oct 2024 20:07:29 +1100 Subject: [PATCH] Update sdl.c --- src/sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl.c b/src/sdl.c index 2ab6b4d..df524f8 100644 --- a/src/sdl.c +++ b/src/sdl.c @@ -61,7 +61,7 @@ int init_gfx(void) { image = NULL; SDL_QueryTexture(texture, &format, &access, &widt, &heig); format2 = SDL_GetPixelFormatName(format); - printf("format: %s, access: %i, width: %i, height: %i,", format2, access, widt, heig); + printf("format: %s, access: %i, width: %i, height: %i\n", format2, access, widt, heig); return 0; }