Backend/Audio/SDL2: Replace puts
call with Backend_PrintInfo
Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
parent
89fb2222b6
commit
27eb7d1788
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ BOOL AudioBackend_Init(void)
|
||||||
Backend_PrintInfo("Available SDL2 audio drivers:");
|
Backend_PrintInfo("Available SDL2 audio drivers:");
|
||||||
|
|
||||||
for (int i = 0; i < SDL_GetNumAudioDrivers(); ++i)
|
for (int i = 0; i < SDL_GetNumAudioDrivers(); ++i)
|
||||||
puts(SDL_GetAudioDriver(i));
|
Backend_PrintInfo("%s", SDL_GetAudioDriver(i));
|
||||||
|
|
||||||
SDL_AudioSpec specification;
|
SDL_AudioSpec specification;
|
||||||
specification.freq = 48000;
|
specification.freq = 48000;
|
||||||
|
|
Loading…
Add table
Reference in a new issue