diff --git a/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs b/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs index b5ddc5d8db..cb449a9211 100644 --- a/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs +++ b/BizHawk.Emulation.Common/Base Implementations/MemoryDomain.cs @@ -7,7 +7,10 @@ /// public abstract class MemoryDomain { - public enum Endian { Big, Little, Unknown } + public enum Endian + { + Big, Little, Unknown + } public string Name { get; protected set; } diff --git a/BizHawk.Emulation.Common/Interfaces/IEmulator.cs b/BizHawk.Emulation.Common/Interfaces/IEmulator.cs index 5c29306c3c..520a5f33d6 100644 --- a/BizHawk.Emulation.Common/Interfaces/IEmulator.cs +++ b/BizHawk.Emulation.Common/Interfaces/IEmulator.cs @@ -68,5 +68,4 @@ namespace BizHawk.Emulation.Common /// CoreComm CoreComm { get; } } - } diff --git a/BizHawk.Emulation.Common/Interfaces/IMemoryCallbackSystem.cs b/BizHawk.Emulation.Common/Interfaces/IMemoryCallbackSystem.cs index c7de5a4457..029a1c9320 100644 --- a/BizHawk.Emulation.Common/Interfaces/IMemoryCallbackSystem.cs +++ b/BizHawk.Emulation.Common/Interfaces/IMemoryCallbackSystem.cs @@ -88,5 +88,8 @@ namespace BizHawk.Emulation.Common uint? AddressMask { get; } } - public enum MemoryCallbackType { Read, Write, Execute } + public enum MemoryCallbackType + { + Read, Write, Execute + } } diff --git a/BizHawk.Emulation.Common/Interfaces/Services/ISoundProvider.cs b/BizHawk.Emulation.Common/Interfaces/Services/ISoundProvider.cs index 08fe412400..88143e84b9 100644 --- a/BizHawk.Emulation.Common/Interfaces/Services/ISoundProvider.cs +++ b/BizHawk.Emulation.Common/Interfaces/Services/ISoundProvider.cs @@ -1,6 +1,9 @@ namespace BizHawk.Emulation.Common { - public enum SyncSoundMode { Sync, Async } + public enum SyncSoundMode + { + Sync, Async + } /// /// This service provides the ability to output sound from the client, diff --git a/BizHawk.Emulation.Common/Sound/Utilities/SpeexResampler.cs b/BizHawk.Emulation.Common/Sound/Utilities/SpeexResampler.cs index 8eab966a1d..e67031ee1e 100644 --- a/BizHawk.Emulation.Common/Sound/Utilities/SpeexResampler.cs +++ b/BizHawk.Emulation.Common/Sound/Utilities/SpeexResampler.cs @@ -21,12 +21,6 @@ namespace BizHawk.Emulation.Common private static class LibSpeexDSP { - public const int QUALITY_MAX = 10; - public const int QUALITY_MIN = 0; - public const int QUALITY_DEFAULT = 4; - public const int QUALITY_VOIP = 3; - public const int QUALITY_DESKTOP = 5; - public enum RESAMPLER_ERR { SUCCESS = 0,