Browse Source

Removed leftover debug code

tags/docs-0.9
RogueException 9 years ago
parent
commit
6706789968
1 changed files with 0 additions and 4 deletions
  1. +0
    -4
      src/Discord.Net/WebSockets/Voice/VoiceBuffer.cs

+ 0
- 4
src/Discord.Net/WebSockets/Voice/VoiceBuffer.cs View File

@@ -35,10 +35,6 @@ namespace Discord.WebSockets.Voice
{
for (int i = 0, pos = 0; i <= wholeFrames; i++, pos += _frameSize)
{
int write = _writeCursor;
int read = _readCursor;
Console.WriteLine($"W {read} - {write}");

//If the read cursor is in the next position, wait for it to move.
ushort nextPosition = _writeCursor;
AdvanceCursorPos(ref nextPosition);


Loading…
Cancel
Save