Browse Source

Fix audio buffer being opened read only

pull/48/head
Tux3 / Mlkj / !Lev.uXFMLA 11 years ago
parent
commit
53a8221aff
  1. 2
      audiobuffer.cpp

2
audiobuffer.cpp

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
AudioBuffer::AudioBuffer() :
QIODevice(0)
{
open(QIODevice::ReadOnly);
open(QIODevice::ReadWrite);
}
AudioBuffer::~AudioBuffer()

Loading…
Cancel
Save