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.)
main
Ryan C. Gordon 2023-09-20 10:04:23 -04:00
parent 87ec6acf2d
commit c7e6d7a1f7
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 1 additions and 1 deletions

View File

@ -602,7 +602,7 @@ static int CheckAudioStreamIsFullySetup(SDL_AudioStream *stream)
int SDL_PutAudioStreamData(SDL_AudioStream *stream, const void *buf, int len) int SDL_PutAudioStreamData(SDL_AudioStream *stream, const void *buf, int len)
{ {
#if DEBUG_AUDIOSTREAM #if DEBUG_AUDIOSTREAM
SDL_Log("AUDIOSTREAM: wants to put %d preconverted bytes", len); SDL_Log("AUDIOSTREAM: wants to put %d bytes", len);
#endif #endif
if (stream == NULL) { if (stream == NULL) {