Skip to content

Commit

Permalink
ALSA: disable recovery (experimental)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekotekina committed Jan 18, 2019
1 parent 59e0296 commit d4591b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpcs3/Emu/Audio/ALSA/ALSABackend.cpp
Expand Up @@ -139,7 +139,7 @@ bool ALSABackend::AddData(const void* src, u32 num_samples)
return false;
}

if (res < 0)
if (false)
{
res = snd_pcm_recover(tls_handle, res, 0);

Expand All @@ -157,7 +157,7 @@ bool ALSABackend::AddData(const void* src, u32 num_samples)
LOG_WARNING(GENERAL, "ALSA: error (%d)", res);
return false;
}

return true;
}

Expand Down

0 comments on commit d4591b1

Please sign in to comment.