diff options
author | Chris Robinson <[email protected]> | 2020-03-24 15:46:47 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-03-24 15:46:47 -0700 |
commit | cae78e79e81afbc47a9a5802c4cfcc62dbc07f8e (patch) | |
tree | 521ff02314133b3508bb3701a4bd898b376e4834 /examples/alplay.c | |
parent | 586bc94d513125a63e61922ac0805a71c6ef1950 (diff) |
Convert the examples from SDL_sound to libsndfile
Diffstat (limited to 'examples/alplay.c')
-rw-r--r-- | examples/alplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/alplay.c b/examples/alplay.c index af1c313c..70314d47 100644 --- a/examples/alplay.c +++ b/examples/alplay.c @@ -158,7 +158,7 @@ int main(int argc, char **argv) } while(alGetError() == AL_NO_ERROR && state == AL_PLAYING); printf("\n"); - /* All done. Delete resources, and close down SDL_sound and OpenAL. */ + /* All done. Delete resources, and close down OpenAL. */ alDeleteSources(1, &source); alDeleteBuffers(1, &buffer); |