Updated memory set method call to new name

svn-id: r20766
This commit is contained in:
Paul Gilbert 2006-02-19 04:20:18 +00:00
parent 8de9189ffe
commit cf99c2092d

View file

@ -41,7 +41,7 @@ void PictureDecoder::writeByte(MemoryBlock *dest, byte v) {
void PictureDecoder::writeBytes(MemoryBlock *dest, byte v, uint16 numBytes) {
if (outputOffset + numBytes > dest->size())
error("Decoded data exceeded allocated output buffer size");
dest->memorySet(v, outputOffset, numBytes);
dest->setBytes(v, outputOffset, numBytes);
outputOffset += numBytes;
}