Sound trouble

Archives Forums/Linux Discussion/Sound trouble

Raz(Posted 2007) [#1]
I have set up my linux session to use the second soundcard by default (hw:1,0) it appears that every app accepts this... except Blitzmax ;)

It runs through hw:0,0, is there anyway I can make BM apps use the session default soundcard? (as stated in ~/.asoundrc and /etc/asound.conf)

apart from that, Im well impressed! Everything works really well (im about to attempt getting FMOD to work)


skidracer(Posted 2007) [#2]
freeaudio is using oss not asound by default, in pub.mod/freeaudio.mod/freeaudio.cpp the actual device is specified like so, which I thought should map to the default sound card:

	fd=open("/dev/dsp",O_WRONLY,0);
	if (fd==-1) return -1;



Raz(Posted 2007) [#3]
ahh, ill have a closer look thanks