Fix second VectorReader constructor

This commit is contained in:
Evghenii 2023-11-28 22:20:11 -05:00 committed by Christoph Oelckers
parent 26c889088d
commit 5ce525efc7

View file

@ -221,6 +221,9 @@ struct VectorReader : public MemoryReader
{
mVector.resize(size);
memcpy(mVector.data(), data, size);
mData = mVector.data();
mLength = (long)size;
mPos = 0;
}
};