From c7e6d7a1f7241ea4bd96a06a6f4deca6c4620fe0 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 20 Sep 2023 10:04:23 -0400 Subject: [PATCH] audio: Changed debug logging output. ("preconverted bytes" makes it sounds like we already converted them before the call instead of "bytes that haven't yet hit the stage where we convert them. Just dump the wording completely.) --- src/audio/SDL_audiocvt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/SDL_audiocvt.c b/src/audio/SDL_audiocvt.c index 000391a43..fa680974d 100644 --- a/src/audio/SDL_audiocvt.c +++ b/src/audio/SDL_audiocvt.c @@ -602,7 +602,7 @@ static int CheckAudioStreamIsFullySetup(SDL_AudioStream *stream) int SDL_PutAudioStreamData(SDL_AudioStream *stream, const void *buf, int len) { #if DEBUG_AUDIOSTREAM - SDL_Log("AUDIOSTREAM: wants to put %d preconverted bytes", len); + SDL_Log("AUDIOSTREAM: wants to put %d bytes", len); #endif if (stream == NULL) {