Move more sound classes to Client.Common

This commit is contained in:
YoshiRulz 2020-12-29 17:04:02 +10:00
parent 9cfe9485ef
commit 2de32ed59a
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
3 changed files with 3 additions and 6 deletions

View File

@ -1,9 +1,7 @@
using System;
using System.Diagnostics;
using BizHawk.Client.Common;
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.Common
{
public class DummySoundOutput : ISoundOutput
{

View File

@ -2,10 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using BizHawk.Client.Common;
using BizHawk.Emulation.Common;
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.Common
{
// This is intended to be a buffer between a synchronous sound provider and the
// output device (e.g. DirectSound). The idea is to take advantage of the samples

View File

@ -2,7 +2,7 @@
using BizHawk.Emulation.Common;
namespace BizHawk.Client.EmuHawk
namespace BizHawk.Client.Common
{
public class SyncToAsyncProvider : ISoundProvider
{