# HG changeset patch # User Sean Egan # Date 1015269312 0 # Node ID 234ce8eb132d5b32100eee838eef34ed26addfd6 # Parent 00ce285e3ed10c126436552ebbc5a7053bbeb4ad [gaim-migrate @ 3019] This is what I meant to commit. committer: Tailor Script diff -r 00ce285e3ed1 -r 234ce8eb132d src/sound.c --- 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);