comparison src/sound.c @ 3005:00ce285e3ed1

[gaim-migrate @ 3018] It would probably be better if it compiled. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 04 Mar 2002 19:08:34 +0000
parents bfd2b1ef907c
children 234ce8eb132d
comparison
equal deleted inserted replaced
3004:bfd2b1ef907c 3005:00ce285e3ed1
497 } 497 }
498 } 498 }
499 #endif 499 #endif
500 500
501 /* Lastly, we can try just plain old /dev/audio */ 501 /* Lastly, we can try just plain old /dev/audio */
502 else if (sound_options & OPT_SOUND_NORMAL) { 502 if (sound_options & OPT_SOUND_NORMAL) {
503 if (can_play_audio()) { 503 if (can_play_audio()) {
504 play_audio(data, size); 504 play_audio(data, size);
505 _exit(0); 505 _exit(0);
506 } 506 }
507 } 507 }