Browse Source

Removed unused parameter

pull/457/head
RogueException 8 years ago
parent
commit
c38a786039
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/Discord.Net.WebSocket/Audio/Targets/BufferedAudioTarget.cs

+ 1
- 2
src/Discord.Net.WebSocket/Audio/Targets/BufferedAudioTarget.cs View File

@@ -9,8 +9,7 @@ namespace Discord.Audio
internal class BufferedAudioTarget : IAudioTarget, IDisposable internal class BufferedAudioTarget : IAudioTarget, IDisposable
{ {
private static readonly byte[] _silencePacket = new byte[] { 0xF8, 0xFF, 0xFE }; private static readonly byte[] _silencePacket = new byte[] { 0xF8, 0xFF, 0xFE };

private double _ticksPerFrame;
private Task _task; private Task _task;
private DiscordVoiceAPIClient _client; private DiscordVoiceAPIClient _client;
private CancellationTokenSource _cancelTokenSource; private CancellationTokenSource _cancelTokenSource;


Loading…
Cancel
Save