Mercurial > pidgin
comparison src/sound.c @ 4579:0ea6a4c53f38
[gaim-migrate @ 4860]
don't make this a popup, it annoys people that don't actually have this method
selected.
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Wed, 12 Feb 2003 04:53:21 +0000 |
parents | 2c8372d4fb2a |
children | 4b1e24835bbf |
comparison
equal
deleted
inserted
replaced
4578:3db8a7cfd971 | 4579:0ea6a4c53f38 |
---|---|
95 | 95 |
96 ao_initialize(); | 96 ao_initialize(); |
97 ao_driver = ao_default_driver_id(); | 97 ao_driver = ao_default_driver_id(); |
98 | 98 |
99 if(ao_driver == -1) { | 99 if(ao_driver == -1) { |
100 do_error_dialog(_("Sound Driver Not Found"), | 100 debug_printf("No suitable sound ouput driver found.\n"); |
101 _("Gaim was unable to load a sound driver. Sound files will " | |
102 "not be played."), GAIM_ERROR); | |
103 } else { | 101 } else { |
104 ao_info *info = ao_driver_info(ao_driver); | 102 ao_info *info = ao_driver_info(ao_driver); |
105 debug_printf("Sound output driver loaded: %s\n", info->name); | 103 debug_printf("Sound output driver loaded: %s\n", info->name); |
106 } | 104 } |
107 | 105 |