diff options
-rw-r--r-- | video/coktel_decoder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/coktel_decoder.cpp b/video/coktel_decoder.cpp index 08340a19a6..d24a021f3b 100644 --- a/video/coktel_decoder.cpp +++ b/video/coktel_decoder.cpp @@ -2296,7 +2296,7 @@ bool VMDDecoder::renderFrame(Common::Rect &rect) { // Directly uncompress onto the video surface const int offsetX = rect.left * _surface.format.bytesPerPixel; const int offsetY = (_y + rect.top) * _surface.pitch; - const int offset = offsetX - offsetY; + const int offset = offsetX + offsetY; if (deLZ77((byte *)_surface.pixels + offset, dataPtr, dataSize, _surface.w * _surface.h * _surface.format.bytesPerPixel - offset)) |