X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fsound.c;h=1858a8f331356abf3a6d0cd6ac92ba809398a216;hb=62573489ded016c3436c4e9eb99f1974ee296e4f;hp=4a323818ca6af535076445b403789ad18052fcad;hpb=29014045f4de045f8452fdf7ab32622c94b37eef;p=rocksndiamonds.git 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);