diff options
| -rw-r--r-- | engines/scumm/he/wiz_he.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/scumm/he/wiz_he.cpp b/engines/scumm/he/wiz_he.cpp index 9aa2bf741a..4661bb649c 100644 --- a/engines/scumm/he/wiz_he.cpp +++ b/engines/scumm/he/wiz_he.cpp @@ -858,7 +858,7 @@ void Wiz::decompressWizImage(uint8 *dst, int dstPitch, int dstType, const uint8  	dstInc = bitDepth;  	if (flags & kWIFFlipX) {  		dstPtr += (w - 1) * bitDepth; -		dstInc = -1; +		dstInc = -bitDepth;  	}  	while (h--) { | 
