From 472da34d7ac2915a4f21ea6b5c02475abc3619e3 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Sat, 20 Feb 2021 14:51:45 -0800 Subject: Fix some stuff that was calling printf directly --- render_sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'render_sdl.c') diff --git a/render_sdl.c b/render_sdl.c index 4099d5d..c0fe585 100755 --- a/render_sdl.c +++ b/render_sdl.c @@ -406,7 +406,7 @@ static void gl_setup() } 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]); -- cgit v1.2.3