Fix a formatting error with logging.

This commit is contained in:
David Reid
2021-08-04 17:30:44 +10:00
parent c0a9d3e9d3
commit 59b6bcdfec
+1 -1
View File
@@ -20134,7 +20134,7 @@ static ma_result ma_context_create_IDirectSoundCapture__dsound(ma_context* pCont
hr = ((ma_DirectSoundCaptureCreateProc)pContext->dsound.DirectSoundCaptureCreate)((pDeviceID == NULL) ? NULL : (const GUID*)pDeviceID->dsound, &pDirectSoundCapture, NULL);
if (FAILED(hr)) {
ma_log_postf(ma_context_get_log(pContext), MA_LOG_LEVEL_ERROR, "[DirectSound] DirectSoundCaptureCreate() failed for capture device.", ma_result_from_HRESULT(hr));
ma_log_postf(ma_context_get_log(pContext), MA_LOG_LEVEL_ERROR, "[DirectSound] DirectSoundCaptureCreate() failed for capture device.");
return ma_result_from_HRESULT(hr);
}