diff options
author | Chris Robinson <[email protected]> | 2011-07-10 22:27:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-07-10 22:27:46 -0700 |
commit | 28f7d2151e14f18742a94f2ac61628982ec8b161 (patch) | |
tree | 46ea1a7331edff67a23895425b5fc6bd77889c97 /Alc/winmm.c | |
parent | cd1560e2b036f160b6c41c5b74b2ad4f7e44bfe1 (diff) |
Use logging macros in the winmm backend
Diffstat (limited to 'Alc/winmm.c')
-rw-r--r-- | Alc/winmm.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Alc/winmm.c b/Alc/winmm.c index 64e669e2..b6fa4da3 100644 --- a/Alc/winmm.c +++ b/Alc/winmm.c @@ -341,7 +341,7 @@ static ALCboolean WinMMOpenPlayback(ALCdevice *pDevice, const ALCchar *deviceNam if((pDevice->Flags&DEVICE_CHANNELS_REQUEST) && pDevice->FmtChans != DevFmtStereo) { - AL_PRINT("Failed to set %s, got Stereo instead\n", DevFmtChannelsString(pDevice->FmtChans)); + ERROR("Failed to set %s, got Stereo instead\n", DevFmtChannelsString(pDevice->FmtChans)); pDevice->Flags &= ~DEVICE_CHANNELS_REQUEST; } pDevice->FmtChans = DevFmtStereo; @@ -373,7 +373,7 @@ static ALCboolean WinMMOpenPlayback(ALCdevice *pDevice, const ALCchar *deviceNam if((res=waveOutOpen(&pData->hWaveHandle.Out, lDeviceID, &wfexFormat, (DWORD_PTR)&WaveOutProc, (DWORD_PTR)pDevice, CALLBACK_FUNCTION)) != MMSYSERR_NOERROR) { - AL_PRINT("waveInOpen failed: %u\n", res); + ERROR("waveOutOpen failed: %u\n", res); goto failure; } @@ -381,7 +381,7 @@ static ALCboolean WinMMOpenPlayback(ALCdevice *pDevice, const ALCchar *deviceNam pData->hWaveThreadEvent = CreateEvent(NULL, AL_TRUE, AL_FALSE, "WaveOutThreadDestroyed"); if(pData->hWaveHdrEvent == NULL || pData->hWaveThreadEvent == NULL) { - AL_PRINT("CreateEvent failed: %lu\n", GetLastError()); + ERROR("CreateEvent failed: %lu\n", GetLastError()); goto failure; } @@ -439,7 +439,7 @@ static ALCboolean WinMMResetPlayback(ALCdevice *device) if(device->Frequency != pData->Frequency) { if((device->Flags&DEVICE_FREQUENCY_REQUEST)) - AL_PRINT("WinMM does not support changing sample rates (wanted %dhz, got %dhz)\n", device->Frequency, pData->Frequency); + ERROR("WinMM does not support changing sample rates (wanted %dhz, got %dhz)\n", device->Frequency, pData->Frequency); device->Flags &= ~DEVICE_FREQUENCY_REQUEST; device->Frequency = pData->Frequency; } @@ -570,7 +570,7 @@ static ALCboolean WinMMOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName if((res=waveInOpen(&pData->hWaveHandle.In, lDeviceID, &wfexCaptureFormat, (DWORD_PTR)&WaveInProc, (DWORD_PTR)pDevice, CALLBACK_FUNCTION)) != MMSYSERR_NOERROR) { - AL_PRINT("waveInOpen failed: %u\n", res); + ERROR("waveInOpen failed: %u\n", res); goto failure; } @@ -578,7 +578,7 @@ static ALCboolean WinMMOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName pData->hWaveThreadEvent = CreateEvent(NULL, AL_TRUE, AL_FALSE, "WaveInThreadDestroyed"); if(pData->hWaveHdrEvent == NULL || pData->hWaveThreadEvent == NULL) { - AL_PRINT("CreateEvent failed: %lu\n", GetLastError()); + ERROR("CreateEvent failed: %lu\n", GetLastError()); goto failure; } |