summaryrefslogtreecommitdiff
path: root/render_sdl.c
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2021-02-20 14:51:45 -0800
committerMichael Pavone <pavone@retrodev.com>2021-02-20 14:51:45 -0800
commit472da34d7ac2915a4f21ea6b5c02475abc3619e3 (patch)
tree8113eb2113e9ae759d4e76839bc60cb62cc8cb34 /render_sdl.c
parentbb5b3179fd704f53af1f75a02b3faf7cec9b7407 (diff)
Fix some stuff that was calling printf directly
Diffstat (limited to 'render_sdl.c')
-rwxr-xr-xrender_sdl.c2
1 files changed, 1 insertions, 1 deletions
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]);