Browse Source

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

Ryan C. Gordon 2 years ago
parent
commit
fe16084075
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/audio/SDL_audio_c.h

+ 1 - 1
src/audio/SDL_audio_c.h

@@ -29,7 +29,7 @@
 #endif
 
 #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
 #define LOG_DEBUG_CONVERT(from, to)
 #endif