[Scummvm-cvs-logs] scummvm master -> 2b926cbe48ad1cac3196cf845a1579dfb29ee498
wjp
wjp at usecode.org
Sun Oct 6 23:19:28 CEST 2013
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
2b926cbe48 WINTERMUTE: Fix typo causing tiled image corruption
Commit: 2b926cbe48ad1cac3196cf845a1579dfb29ee498
https://github.com/scummvm/scummvm/commit/2b926cbe48ad1cac3196cf845a1579dfb29ee498
Author: Willem Jan Palenstijn (wjp at usecode.org)
Date: 2013-10-06T14:17:05-07:00
Commit Message:
WINTERMUTE: Fix typo causing tiled image corruption
Changed paths:
engines/wintermute/base/gfx/osystem/render_ticket.cpp
diff --git a/engines/wintermute/base/gfx/osystem/render_ticket.cpp b/engines/wintermute/base/gfx/osystem/render_ticket.cpp
index 0fb68bc..1cd35e3 100644
--- a/engines/wintermute/base/gfx/osystem/render_ticket.cpp
+++ b/engines/wintermute/base/gfx/osystem/render_ticket.cpp
@@ -168,7 +168,7 @@ void RenderTicket::drawToSurface(Graphics::Surface *_targetSurface, Common::Rect
subRect.left = x;
subRect.top = y;
subRect.setWidth(w);
- subRect.setHeight(w);
+ subRect.setHeight(h);
if (subRect.intersects(*clipRect)) {
subRect.clip(*clipRect);
More information about the Scummvm-git-logs
mailing list