Let's fix the sound code so it doesn't loop infinatly, shall we?

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1096 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-06-15 15:04:41 +00:00
parent 59fdc17d94
commit 973d26da3e
1 changed files with 5 additions and 22 deletions

View File

@ -71,12 +71,11 @@ static int OSS_InitCard(soundcardinfo_t *sc, int cardnum)
soundcardinfo_t *ec;
devname = Cvar_Get("snd_devicename", "/dev/dsp", 0, "Sound controls");
devname = Cvar_Get(va("snd_devicename%i", cardnum+1), cardnum?"":"/dev/dsp", 0, "Sound controls");
snddev = devname->string;
for (ec = sndcardinfo; ec; ec = ec->next)
if (!strcmp(ec->name, snddev))
return 2;
if (!*snddev)
return 2;
sc->inactive_sound = true; //linux sound devices always play sound, even when we're not the active app...
@ -89,24 +88,8 @@ static int OSS_InitCard(soundcardinfo_t *sc, int cardnum)
{
perror(snddev);
Con_Printf("Could not open %s\n", snddev);
devname = Cvar_Get("snd_devicename2", "", 0, "Sound controls");
snddev = devname->string;
if (*snddev) //try a secondary if they named one
{
printf("Initing sound device %s\n", snddev);
sc->audio_fd = open(snddev, O_RDWR | O_NONBLOCK);
if (sc->audio_fd < 0)
Con_Printf("Could not open %s\n", snddev);
}
if (sc->audio_fd < 0)
{
Con_Printf("Running without sound\n");
OSS_Shutdown(sc);
return 0;
}
OSS_Shutdown(sc);
return 0;
}
Q_strncpyz(sc->name, snddev, sizeof(sc->name));