SoftRasterizer: Further cleanup following 7711f82.

This commit is contained in:
rogerman 2016-12-05 11:49:00 -08:00
parent 7711f8288b
commit 9564097182
2 changed files with 1 additions and 3 deletions

View File

@ -1081,7 +1081,6 @@ SoftRasterizerTexture::SoftRasterizerTexture(u32 texAttributes, u32 palAttribute
_renderWidthMask = _renderWidth - 1;
_renderHeightMask = _renderHeight - 1;
_renderWidthShift = 0;
_renderWrapMode = 0;
_deposterizeSrcSurface.Surface = (unsigned char *)_unpackData;

View File

@ -1,5 +1,5 @@
/*
Copyright (C) 2009-2015 DeSmuME team
Copyright (C) 2009-2016 DeSmuME team
This file is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -61,7 +61,6 @@ protected:
s32 _renderWidthMask;
s32 _renderHeightMask;
u32 _renderWidthShift;
u8 _renderWrapMode;
public:
SoftRasterizerTexture(u32 texAttributes, u32 palAttributes);