Update sdl.c

This commit is contained in:
Jason Bou-Samra
2024-10-09 20:07:29 +11:00
committed by GitHub
parent 7171099ce5
commit 3f0275b813
+1 -1
View File
@@ -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;
}