diff options
Diffstat (limited to 'src/InputMemory.cpp')
-rw-r--r-- | src/InputMemory.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/InputMemory.cpp b/src/InputMemory.cpp index ff46b4e..e27e967 100644 --- a/src/InputMemory.cpp +++ b/src/InputMemory.cpp @@ -27,7 +27,7 @@ InputMemory::InputMemory(Buffer* dataIn) - : ModInput(ModFormat(0), ModFormat(1)) + : ModInput() { PDEBUG("InputMemory::InputMemory(%p) @ %p\n", dataIn, this); @@ -45,7 +45,6 @@ InputMemory::~InputMemory() void InputMemory::setInput(Buffer* dataIn) { myDataIn = dataIn; - myOutputFormat.size(dataIn->getLength()); } |