From fde8dc3d1cce44975c297ebb3efe4b09a81e6dc6 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 28 Feb 2016 13:25:48 -0500 Subject: [PATCH] Add a TODO! --- BizHawk.Emulation.Common/Interfaces/ISoundProvider.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.Emulation.Common/Interfaces/ISoundProvider.cs b/BizHawk.Emulation.Common/Interfaces/ISoundProvider.cs index e40ac451f7..4cbd619f0c 100644 --- a/BizHawk.Emulation.Common/Interfaces/ISoundProvider.cs +++ b/BizHawk.Emulation.Common/Interfaces/ISoundProvider.cs @@ -4,6 +4,8 @@ { void GetSamples(short[] samples); void DiscardSamples(); + + // TODO: we want to remove this property. Clients do not need this information. This is only used by cores themselves, they should use their own interface/implementation to pass this information around int MaxVolume { get; set; } } }