Remove unconditional rate control on OSS.

This commit is contained in:
Brandon Wright 2017-11-20 13:09:05 -06:00
parent 7a368ededd
commit 9c9eb94702
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ S9xOSSSoundDriver::samples_available (void)
ioctl (filedes, SNDCTL_DSP_GETOSPACE, &info);
if (Settings.DynamicRateControl || 1)
if (Settings.DynamicRateControl)
{
S9xUpdateDynamicRate (info.bytes, output_buffer_size);
}