Comment out spammy error message.

This commit is contained in:
Themaister 2012-09-25 13:33:11 +02:00
parent 9c24946ca5
commit 254e711e2d
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ static size_t alsa_write_avail(void *data)
snd_pcm_sframes_t avail = snd_pcm_avail_update(alsa->pcm);
if (avail < 0)
{
RARCH_WARN("[ALSA]: avail_update() failed: %s\n", snd_strerror(avail));
//RARCH_WARN("[ALSA]: avail_update() failed: %s\n", snd_strerror(avail));
return alsa->buffer_size;
}