Backend/Audio/SDL2: Replace puts call with Backend_PrintInfo

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
Gabriel Ravier 2020-04-12 00:49:22 +02:00
parent 89fb2222b6
commit 27eb7d1788

View file

@ -75,7 +75,7 @@ BOOL AudioBackend_Init(void)
Backend_PrintInfo("Available SDL2 audio drivers:");
for (int i = 0; i < SDL_GetNumAudioDrivers(); ++i)
puts(SDL_GetAudioDriver(i));
Backend_PrintInfo("%s", SDL_GetAudioDriver(i));
SDL_AudioSpec specification;
specification.freq = 48000;