Changeset 8488 for trunk/src/winmm/mixer.cpp
- Timestamp:
- May 25, 2002, 10:07:59 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/winmm/mixer.cpp
r8485 r8488 1 /* $Id: mixer.cpp,v 1.1 5 2002-05-24 18:02:47sandervl Exp $ */1 /* $Id: mixer.cpp,v 1.16 2002-05-25 08:07:59 sandervl Exp $ */ 2 2 3 3 /* … … 908 908 memset(mixerDestInputs, -1, sizeof(mixerDestInputs)); 909 909 910 if(OSLibMixerOpen() == FALSE) {910 if(OSLibMixerOpen() == TRUE) { 911 911 //Line out destination 912 912 pDestLine = mixerAddDestination(MIXER_DEST_LINEOUT); … … 918 918 919 919 //WaveIn destination 920 pDestLine = mixerAddDestination(MIXER_DEST_WAVEIN);921 mixerAddControl(pDestLine, MIX_CTRL_MUX_IN_W_SRC, pDestLine);920 pDestLine = mixerAddDestination(MIXER_DEST_WAVEIN); 921 pWaveInMux = mixerAddControl(pDestLine, MIX_CTRL_MUX_IN_W_SRC, pDestLine); 922 922 mixerAddControl(pDestLine, MIX_CTRL_VOL_IN_W_MIC, pDestLine); 923 923 mixerAddControl(pDestLine, MIX_CTRL_VOL_IN_W_LINE, pDestLine);
Note:
See TracChangeset
for help on using the changeset viewer.