|
Size: 893
Comment: Added code example
|
← Revision 13 as of 2013-11-02 13:01:22 ⇥
Size: 892
Comment: Removed spaces and corrected related function.
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 18: | Line 18: |
| for ( i = 0; i < SDL_GetNumAudioDrivers(); ++i ) { | for (i = 0; i < SDL_GetNumAudioDrivers(); ++i) { |
| Line 32: | Line 32: |
| [[SDL_AudioInit]] | .[[SDL_AudioInit]] |
SDL_AudioQuit
Use this function to shut down audio if you initialized it with SDL_AudioInit().
Syntax
void SDL_AudioQuit(void)
Code Examples
int i;
for (i = 0; i < SDL_GetNumAudioDrivers(); ++i) {
const char* driver_name = SDL_GetAudioDriver(i);
if (SDL_AudioInit(driver_name)) {
printf("Audio driver failed to initialize: %s\n", driver_name);
continue;
}
SDL_AudioQuit();
}
Remarks
This function is used internally, and should not be used unless you have a specific need to specify the audio driver you want to use. You should normally use SDL_Quit() or SDL_QuitSubSystem().
