From: Sean E. <sea...@us...> - 2002-03-04 19:15:16
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv6656/src Modified Files: sound.c Log Message: This is what I meant to commit. Index: sound.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/sound.c,v retrieving revision 1.48 retrieving revision 1.49 diff -u -d -r1.48 -r1.49 --- sound.c 4 Mar 2002 19:08:34 -0000 1.48 +++ sound.c 4 Mar 2002 19:15:12 -0000 1.49 @@ -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); |