Correction to previous AVI recording commit: buffer doesn't need to be so large.

This commit is contained in:
J.D. Purcell 2017-03-23 09:30:22 -04:00
parent 33d42152a8
commit 231795c2cb
1 changed files with 1 additions and 2 deletions

View File

@ -3142,8 +3142,7 @@ namespace BizHawk.Client.EmuHawk
else
{
_currentSoundProvider.SetSyncMode(SyncSoundMode.Sync);
double msPerFrame = 1000.0 * Emulator.CoreComm.VsyncDen / Emulator.CoreComm.VsyncNum;
_aviSoundInputAsync = new SyncToAsyncProvider(_currentSoundProvider, msPerFrame + 10.0);
_aviSoundInputAsync = new SyncToAsyncProvider(_currentSoundProvider, 10.0);
}
}
_dumpProxy = new SimpleSyncSoundProvider();