diff options
author | Michael Pavone <pavone@retrodev.com> | 2021-02-20 14:51:45 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2021-02-20 14:51:45 -0800 |
commit | 472da34d7ac2915a4f21ea6b5c02475abc3619e3 (patch) | |
tree | 8113eb2113e9ae759d4e76839bc60cb62cc8cb34 /render_sdl.c | |
parent | bb5b3179fd704f53af1f75a02b3faf7cec9b7407 (diff) |
Fix some stuff that was calling printf directly
Diffstat (limited to 'render_sdl.c')
-rwxr-xr-x | render_sdl.c | 2 |
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]); |