Mercurial > pidgin
changeset 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 | 206bf0e4d560 |
files | src/sound.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/sound.c Mon Mar 04 19:08:34 2002 +0000 +++ b/src/sound.c Mon Mar 04 19:15:12 2002 +0000 @@ -480,7 +480,7 @@ #ifdef ARTSC_SOUND /* ArtsC is the new second choice. */ - else if (sound_options & OPT_SOUND_ARTSC) { + if (sound_options & OPT_SOUND_ARTSC) { if (can_play_artsc()) { if (play_artsc(data, size)) _exit(0); @@ -490,7 +490,7 @@ #ifdef NAS_SOUND /* NAS is our second choice setup. */ - else if (sound_options & OPT_SOUND_NAS) { + if (sound_options & OPT_SOUND_NAS) { if (can_play_nas()) { if (play_nas(data, size)) _exit(0);