Mercurial > pidgin
comparison src/sound.c @ 3006:234ce8eb132d
[gaim-migrate @ 3019]
This is what I meant to commit.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Mon, 04 Mar 2002 19:15:12 +0000 |
parents | 00ce285e3ed1 |
children | 0486d3d00d0e |
comparison
equal
deleted
inserted
replaced
3005:00ce285e3ed1 | 3006:234ce8eb132d |
---|---|
478 } | 478 } |
479 #endif | 479 #endif |
480 | 480 |
481 #ifdef ARTSC_SOUND | 481 #ifdef ARTSC_SOUND |
482 /* ArtsC is the new second choice. */ | 482 /* ArtsC is the new second choice. */ |
483 else if (sound_options & OPT_SOUND_ARTSC) { | 483 if (sound_options & OPT_SOUND_ARTSC) { |
484 if (can_play_artsc()) { | 484 if (can_play_artsc()) { |
485 if (play_artsc(data, size)) | 485 if (play_artsc(data, size)) |
486 _exit(0); | 486 _exit(0); |
487 } | 487 } |
488 } | 488 } |
489 #endif | 489 #endif |
490 | 490 |
491 #ifdef NAS_SOUND | 491 #ifdef NAS_SOUND |
492 /* NAS is our second choice setup. */ | 492 /* NAS is our second choice setup. */ |
493 else if (sound_options & OPT_SOUND_NAS) { | 493 if (sound_options & OPT_SOUND_NAS) { |
494 if (can_play_nas()) { | 494 if (can_play_nas()) { |
495 if (play_nas(data, size)) | 495 if (play_nas(data, size)) |
496 _exit(0); | 496 _exit(0); |
497 } | 497 } |
498 } | 498 } |