WINTERMUTE: Pass blendMode to blit() in RenderTicket.

This commit is contained in:
Tobia Tesan 2013-09-04 17:44:49 +02:00 committed by Einar Johan Trøan Sømåen
parent b4161f54b6
commit d6c21f8c1e

View File

@ -132,7 +132,7 @@ void RenderTicket::drawToSurface(Graphics::Surface *_targetSurface, Common::Rect
src._alphaMode = _owner->getAlphaType();
}
}
src.blit(*_targetSurface, dstRect->left, dstRect->top, _transform._flip, clipRect, _transform._rgbaMod, clipRect->width(), clipRect->height());
src.blit(*_targetSurface, dstRect->left, dstRect->top, _transform._flip, clipRect, _transform._rgbaMod, clipRect->width(), clipRect->height(), _transform._blendMode);
if (doDelete) {
delete clipRect;
}