move NullSound to its own file, as it's not actually used in NullEmulator

This commit is contained in:
goyuken 2014-12-01 16:56:51 +00:00
parent a104c420cf
commit 78209348dd
3 changed files with 17 additions and 9 deletions

View File

@ -110,15 +110,6 @@ namespace BizHawk.Emulation.Common
}
}
public class NullSound : ISoundProvider
{
public static readonly NullSound SilenceProvider = new NullSound();
public void GetSamples(short[] samples) { }
public void DiscardSamples() { }
public int MaxVolume { get; set; }
}
#region super tone generator
class Pleg

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BizHawk.Emulation.Common
{
public class NullSound : ISoundProvider
{
public static readonly NullSound SilenceProvider = new NullSound();
public void GetSamples(short[] samples) { }
public void DiscardSamples() { }
public int MaxVolume { get; set; }
}
}

View File

@ -52,6 +52,7 @@
<Compile Include="Base Implementations\ControllerDefinition.cs" />
<Compile Include="Base Implementations\NullController.cs" />
<Compile Include="Base Implementations\NullEmulator.cs" />
<Compile Include="Base Implementations\NullSound.cs" />
<Compile Include="CoreAttributes.cs" />
<Compile Include="CoreComms.cs" />
<Compile Include="Database\CRC32.cs" />