mirror of
https://github.com/vale981/VoiDPlugins
synced 2025-03-05 09:11:38 -05:00
Fix RingBuffer
This commit is contained in:
parent
da970f41d4
commit
429e6cae7a
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ namespace VoiDPlugins.Library
|
|||
public IEnumerator<T> GetEnumerator()
|
||||
{
|
||||
if (!this.IsFilled)
|
||||
return (IEnumerator<T>)dataStream.GetEnumerator();
|
||||
return ((IEnumerable<T>)dataStream).GetEnumerator();
|
||||
else
|
||||
return RingGetEnumerator();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue