[Scummvm-git-logs] scummvm master -> 04cdae3478cb9a55c0a1cf6129e99c6252a3b036

eriktorbjorn noreply at scummvm.org
Fri Dec 17 15:29:14 UTC 2021


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:
04cdae3478 SHERLOCK: Fix missing corner in Rose Tattoo dialogs


Commit: 04cdae3478cb9a55c0a1cf6129e99c6252a3b036
    https://github.com/scummvm/scummvm/commit/04cdae3478cb9a55c0a1cf6129e99c6252a3b036
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2021-12-17T16:28:38+01:00

Commit Message:
SHERLOCK: Fix missing corner in Rose Tattoo dialogs

Changed paths:
    engines/sherlock/tattoo/widget_base.cpp


diff --git a/engines/sherlock/tattoo/widget_base.cpp b/engines/sherlock/tattoo/widget_base.cpp
index eab8e3217a..9241606abd 100644
--- a/engines/sherlock/tattoo/widget_base.cpp
+++ b/engines/sherlock/tattoo/widget_base.cpp
@@ -195,7 +195,7 @@ void WidgetBase::makeInfoArea(Surface &s) {
 	s.SHtransBlitFrom(images[0], Common::Point(0, 0));
 	s.SHtransBlitFrom(images[1], Common::Point(s.width() - images[1]._width, 0));
 	s.SHtransBlitFrom(images[2], Common::Point(0, s.height() - images[2]._height));
-	s.SHtransBlitFrom(images[3], Common::Point(s.width() - images[3]._width, s.height()));
+	s.SHtransBlitFrom(images[3], Common::Point(s.width() - images[3]._width, s.height() - images[3]._height));
 
 	// Draw the top of the Info Box
 	s.hLine(images[0]._width, 0, s.width() - images[1]._width, INFO_TOP);




More information about the Scummvm-git-logs mailing list