The RRConfig only allows you to map a line to the default windows soundcard. Is there any way to make it show all lines of all soundcards?
Also, I noticed that in modMixer.bas the OpenMixer function redefines the SoundCard variable and doesnt set itself to any value, wouldn't this overwrite the rr.ini value and always use the first soundcard, 0 (zero) ?
Code:
Public Function OpenMixer() As Boolean
Dim SoundCard As Double
'try to open the mixer
'if it can be opened, then the global hMixer variable will be set to it's handle
If mixerOpen(hMixer, SoundCard, 0, 0, 0) = 0 Then
OpenMixer = True 'life is grand, the mixer opened
ReDim MixerState(0)
End If
'Test VolTable
'ReDim VolTable(1, 2)
'VolTable(0, 0) = 6
'VolTable(1, 0) = 0.1
'VolTable(0, 1) = 11
'VolTable(1, 1) = 1
'VolTable(0, 2) = 100
'VolTable(1, 2) = 5
End Function
Then again, I could be way off....just want to get this to work so badly!
Bookmarks