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; } } }