Fixes for multiple soundcards and joystick address.

This commit is contained in:
Jaroslav Kysela 1998-12-05 11:19:22 +00:00
parent 937b3caa1b
commit d55abb225a

View file

@ -559,7 +559,12 @@ static void soundcard_setup_write_switch(FILE * out, int interface, const unsign
break;
case SND_CTL_SW_TYPE_WORD:
s = "word";
if (interface == SND_INTERFACE_CONTROL &&
!strcmp(name, SND_CTL_SW_JOYSTICK_ADDRESS)) {
sprintf(v, "0x%x", (unsigned int) pdata->data16[0]);
} else {
sprintf(v, "%u", (unsigned int) pdata->data16[0]);
}
break;
case SND_CTL_SW_TYPE_DWORD:
s = "dword";
@ -864,8 +869,10 @@ int soundcard_setup_process(int cardno)
}
}
}
}
if (ctlhandle)
if(ctlhandle) {
snd_ctl_close(ctlhandle);
ctlhandle = NULL;
}
}
return 1;
}