mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-01-18 10:36:44 +00:00
Increased audio channels from 5 to 8
This commit is contained in:
parent
63838e97c7
commit
57195bcf0b
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ public class Audio : IDisposable
|
|||
public const int SampleRate = 16000;
|
||||
public const int HQSampleRate = 48000;
|
||||
public const AudioChannels AudioChannel = AudioChannels.Mono;
|
||||
public const int ChannelsCount = 5;
|
||||
public const int ChannelsCount = 8;
|
||||
public readonly DynamicSoundEffectInstance[] Channels = new DynamicSoundEffectInstance[ChannelsCount];
|
||||
private bool[] freeChannels = new bool[ChannelsCount];
|
||||
|
||||
|
|
Loading…
Reference in a new issue