mirror of https://github.com/snes9xgit/snes9x.git
Remove unconditional rate control on OSS.
This commit is contained in:
parent
7a368ededd
commit
9c9eb94702
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue