mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
(EriReader): removed unused fields.
This commit is contained in:
parent
9b08077fb3
commit
6d8cbd594f
@ -30,14 +30,12 @@ namespace GameRes.Formats.Entis
|
|||||||
uint m_nHeightBlocks;
|
uint m_nHeightBlocks;
|
||||||
|
|
||||||
int m_dwBytesPerLine;
|
int m_dwBytesPerLine;
|
||||||
uint m_dwClippedPixel;
|
|
||||||
|
|
||||||
int m_ptrDstBlock;
|
int m_ptrDstBlock;
|
||||||
int m_nDstLineBytes;
|
int m_nDstLineBytes;
|
||||||
int m_nDstPixelBytes;
|
int m_nDstPixelBytes;
|
||||||
uint m_nDstWidth;
|
uint m_nDstWidth;
|
||||||
uint m_nDstHeight;
|
uint m_nDstHeight;
|
||||||
uint m_fdwDecFlags;
|
|
||||||
|
|
||||||
// buffers for lossless encoding
|
// buffers for lossless encoding
|
||||||
byte[] m_ptrOperations;
|
byte[] m_ptrOperations;
|
||||||
@ -229,7 +227,6 @@ namespace GameRes.Formats.Entis
|
|||||||
uint image_bytes = stride * m_info.Height;
|
uint image_bytes = stride * m_info.Height;
|
||||||
m_output = new byte[image_bytes];
|
m_output = new byte[image_bytes];
|
||||||
m_dwBytesPerLine = (int)stride;
|
m_dwBytesPerLine = (int)stride;
|
||||||
m_dwClippedPixel = 0;
|
|
||||||
if (!m_info.VerticalFlip)
|
if (!m_info.VerticalFlip)
|
||||||
{
|
{
|
||||||
m_dst = ((int)m_info.Height - 1) * m_dwBytesPerLine;
|
m_dst = ((int)m_info.Height - 1) * m_dwBytesPerLine;
|
||||||
|
Loading…
Reference in New Issue
Block a user