audio: LOG_DEBUG_CONVERT should use SDL_Log, not fprintf(stderr).

This commit is contained in:
Ryan C. Gordon 2022-07-19 16:04:48 -04:00
parent 257277903e
commit fe16084075
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
#endif #endif
#if DEBUG_CONVERT #if DEBUG_CONVERT
#define LOG_DEBUG_CONVERT(from, to) fprintf(stderr, "Converting %s to %s.\n", from, to); #define LOG_DEBUG_CONVERT(from, to) SDL_Log("SDL_AUDIO_CONVERT: Converting %s to %s.\n", from, to);
#else #else
#define LOG_DEBUG_CONVERT(from, to) #define LOG_DEBUG_CONVERT(from, to)
#endif #endif