From 5e800b7bba760587617cd465543251ac9c1b2c13 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 8 Dec 2016 19:54:38 -0600 Subject: [PATCH] cleanup some unsightly comments in ISyncSoundProvider --- .../Interfaces/ISyncSoundProvider.cs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/BizHawk.Emulation.Common/Interfaces/ISyncSoundProvider.cs b/BizHawk.Emulation.Common/Interfaces/ISyncSoundProvider.cs index cbb7ee2a26..3da3b32f31 100644 --- a/BizHawk.Emulation.Common/Interfaces/ISyncSoundProvider.cs +++ b/BizHawk.Emulation.Common/Interfaces/ISyncSoundProvider.cs @@ -3,14 +3,10 @@ public interface ISyncSoundProvider { /// - /// /// - /// /// number of sample PAIRS available void GetSamples(out short[] samples, out int nsamp); - /// - /// - /// + void DiscardSamples(); } @@ -21,10 +17,9 @@ { private readonly ISoundProvider source; private readonly int spf; + /// - /// /// - /// /// number of sample pairs to request and provide on each GetSamples() call public FakeSyncSound(ISoundProvider source, int spf) {