X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Fsound.c;h=1858a8f331356abf3a6d0cd6ac92ba809398a216;hp=4a323818ca6af535076445b403789ad18052fcad;hb=57562a0f29074feea1dc01ddf1b1d5e4e6d59730;hpb=e557b2b5d9951a4e692fd4e32a5cf45c84252c64 diff --git a/src/sound.c b/src/sound.c index 4a323818..1858a8f3 100644 --- a/src/sound.c +++ b/src/sound.c @@ -73,7 +73,7 @@ void SoundServer() if (!FD_ISSET(sound_pipe[0], &sound_fdset)) continue; if (read(sound_pipe[0], &snd_ctrl, sizeof(snd_ctrl)) != sizeof(snd_ctrl)) - Error(ERR_EXIT, "broken pipe - no sounds"); + Error(ERR_EXIT_SOUNDSERVER, "broken pipe - no sounds"); #ifdef VOXWARE @@ -483,13 +483,13 @@ void HPUX_Audio_Control() audio_ctl = open("/dev/audioCtl", O_WRONLY | O_NDELAY); if (audio_ctl == -1) - Error(ERR_EXIT, "cannot open /dev/audioCtl - no sounds"); + Error(ERR_EXIT_SOUNDSERVER, "cannot open /dev/audioCtl - no sounds"); if (ioctl(audio_ctl, AUDIO_DESCRIBE, &ainfo) == -1) - Error(ERR_EXIT, "no audio info - no sounds"); + Error(ERR_EXIT_SOUNDSERVER, "no audio info - no sounds"); if (ioctl(audio_ctl, AUDIO_SET_DATA_FORMAT, AUDIO_FORMAT_ULAW) == -1) - Error(ERR_EXIT, "ulaw audio not available - no sounds"); + Error(ERR_EXIT_SOUNDSERVER, "ulaw audio not available - no sounds"); ioctl(audio_ctl, AUDIO_SET_CHANNELS, 1); ioctl(audio_ctl, AUDIO_SET_SAMPLE_RATE, 8000);