diff render_sdl.c @ 2031:0757da8ee702

Fix some stuff that was calling printf directly
author Michael Pavone <pavone@retrodev.com>
date Sat, 20 Feb 2021 14:51:45 -0800
parents 193b804c9845
children 46ee354f29bd
line wrap: on
line diff
--- a/render_sdl.c	Sat Feb 20 12:47:26 2021 -0800
+++ b/render_sdl.c	Sat Feb 20 14:51:45 2021 -0800
@@ -406,7 +406,7 @@
 	} else {
 		tex_width = tex_height = 512;
 	}
-	printf("Using %dx%d textures\n", tex_width, tex_height);
+	debug_message("Using %dx%d textures\n", tex_width, tex_height);
 	for (int i = 0; i < 3; i++)
 	{
 		glBindTexture(GL_TEXTURE_2D, textures[i]);