mirror of https://github.com/encounter/SDL.git
audio: LOG_DEBUG_CONVERT should use SDL_Log, not fprintf(stderr).
This commit is contained in:
parent
257277903e
commit
fe16084075
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue