diff options
author | Chris Robinson <[email protected]> | 2020-01-10 07:56:43 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-01-10 07:56:43 -0800 |
commit | e6e2f509f871061ec917951fb77021856a9a0263 (patch) | |
tree | 5423d2f46e0fee6021879e17e91569f12ac3d44d /alc/backends/oss.cpp | |
parent | b31886ad73937be071409388cb0b8515754a09f1 (diff) |
Make CreateRingBuffer a static RingBuffer method
Diffstat (limited to 'alc/backends/oss.cpp')
-rw-r--r-- | alc/backends/oss.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/backends/oss.cpp b/alc/backends/oss.cpp index b3f8936a..74bdbb11 100644 --- a/alc/backends/oss.cpp +++ b/alc/backends/oss.cpp @@ -612,7 +612,7 @@ void OSScapture::open(const ALCchar *name) "Failed to set %s samples, got OSS format %#x", DevFmtTypeString(mDevice->FmtType), ossFormat}; - mRing = CreateRingBuffer(mDevice->BufferSize, frameSize, false); + mRing = RingBuffer::Create(mDevice->BufferSize, frameSize, false); mDevice->DeviceName = name; } |