From 37e227263303d9f0a048551bc2ee9c3de6294662 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Wed, 27 Mar 2019 22:23:55 -0700 Subject: Restore some newlines in debug output that got lost when fixing GDB remote debugging issue --- render_sdl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'render_sdl.c') diff --git a/render_sdl.c b/render_sdl.c index c58cff9..f25eac9 100755 --- a/render_sdl.c +++ b/render_sdl.c @@ -1059,11 +1059,11 @@ static void init_audio() debug_message("Initialized audio at frequency %d with a %d sample buffer, ", actual.freq, actual.samples); sample_size = SDL_AUDIO_BITSIZE(actual.format) / 8; if (actual.format == AUDIO_S16SYS) { - debug_message("signed 16-bit int format"); + debug_message("signed 16-bit int format\n"); convert = convert_s16; mix_buf = calloc(output_channels * buffer_samples, sizeof(float)); } else if (actual.format == AUDIO_F32SYS) { - debug_message("32-bit float format"); + debug_message("32-bit float format\n"); convert = clamp_f32; mix_buf = NULL; } else { -- cgit v1.2.3