From 90244c4e5c6918e7d50e99e8c9e66f0b64dd4780 Mon Sep 17 00:00:00 2001 From: Érico Rolim Date: Sep 27 2020 20:19:31 +0000 Subject: Use the alternative TRasterCodecLZO::decompress signature for big-endian in tiio_tzl.cpp. This patch fixes code that was missed in previous refactoring. --- diff --git a/toonz/sources/image/tzl/tiio_tzl.cpp b/toonz/sources/image/tzl/tiio_tzl.cpp index bcdf7f6..34c0134 100644 --- a/toonz/sources/image/tzl/tiio_tzl.cpp +++ b/toonz/sources/image/tzl/tiio_tzl.cpp @@ -945,7 +945,7 @@ void TLevelWriterTzl::saveImage(const TImageP &img, const TFrameId &_fid, Header *header = (Header *)buff; TRasterP ras; - m_codec->decompress(buff, buffSize, ras); + m_codec->decompress(buff, buffSize, ras, false); delete[] buff; assert((TRasterCM32P)ras); assert(ras->getLx() == header->m_lx);