From 676b84cad1f39c2450d64223c7418b51dc6a88a8 Mon Sep 17 00:00:00 2001 From: David Reid Date: Mon, 12 Jan 2026 19:25:02 +1000 Subject: [PATCH] ALSA: Remove some out of date comments. --- miniaudio.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/miniaudio.h b/miniaudio.h index 27ac1956..bd7b8372 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -29729,7 +29729,6 @@ static ma_result ma_device_step__alsa(ma_device* pDevice, ma_blocking_mode block if ((revents & POLLERR) != 0) { ma_snd_pcm_state_t state = pContextStateALSA->snd_pcm_state(pDeviceStateALSA->pPCMCapture); if (state == MA_SND_PCM_STATE_XRUN) { - /* The PCM is in a xrun state. This will be recovered from at a higher level. We can disregard this. */ ma_log_postf(ma_device_get_log(pDevice), MA_LOG_LEVEL_DEBUG, "[ALSA] Capture xrun detected."); } else { ma_log_postf(ma_device_get_log(pDevice), MA_LOG_LEVEL_WARNING, "[ALSA] POLLERR detected. status = %d", pContextStateALSA->snd_pcm_state(pDeviceStateALSA->pPCMCapture)); @@ -29781,7 +29780,6 @@ static ma_result ma_device_step__alsa(ma_device* pDevice, ma_blocking_mode block if ((revents & POLLERR) != 0) { ma_snd_pcm_state_t state = pContextStateALSA->snd_pcm_state(pDeviceStateALSA->pPCMPlayback); if (state == MA_SND_PCM_STATE_XRUN) { - /* The PCM is in a xrun state. This will be recovered from at a higher level. We can disregard this. */ ma_log_postf(ma_device_get_log(pDevice), MA_LOG_LEVEL_DEBUG, "[ALSA] Playback xrun detected"); } else { ma_log_postf(ma_device_get_log(pDevice), MA_LOG_LEVEL_WARNING, "[ALSA] POLLERR detected. status = %d", pContextStateALSA->snd_pcm_state(pDeviceStateALSA->pPCMPlayback));