comparison src/sound.c @ 178:5d62a5d50c89

[gaim-migrate @ 188] Small changes and removal of unnecessary code. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 26 Apr 2000 01:29:21 +0000
parents e277d5f0c1dd
children 9d258a0aa560
comparison
equal deleted inserted replaced
177:87160c1a39fc 178:5d62a5d50c89
114 int fd, i; 114 int fd, i;
115 esd_format_t format = ESD_BITS16 | ESD_STREAM | ESD_PLAY | ESD_MONO; 115 esd_format_t format = ESD_BITS16 | ESD_STREAM | ESD_PLAY | ESD_MONO;
116 guint16 *lineardata; 116 guint16 *lineardata;
117 117
118 118
119 fd = esd_play_stream(format, 8012, NULL, "gaim"); 119 fd = esd_play_stream_fallback(format, 8012, NULL, "gaim");
120 120
121 if (fd < 0) { 121 if (fd < 0) {
122 return 0; 122 return 0;
123 } 123 }
124 124