[Scummvm-cvs-logs] scummvm master -> 828baf963afaf9fc3449774627e4e970677e061a

Strangerke Strangerke at scummvm.org
Sun Feb 16 21:53:24 CET 2014


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:
828baf963a TSAGE: Fix bug #6509 - Topmost line of scene isn't drawn


Commit: 828baf963afaf9fc3449774627e4e970677e061a
    https://github.com/scummvm/scummvm/commit/828baf963afaf9fc3449774627e4e970677e061a
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-02-16T12:51:50-08:00

Commit Message:
TSAGE: Fix bug #6509 - Topmost line of scene isn't drawn

Changed paths:
    engines/tsage/user_interface.cpp



diff --git a/engines/tsage/user_interface.cpp b/engines/tsage/user_interface.cpp
index ae5c6c8..e0b624d 100644
--- a/engines/tsage/user_interface.cpp
+++ b/engines/tsage/user_interface.cpp
@@ -297,8 +297,8 @@ void UICollection::r2rDrawFrame() {
 	GLOBALS._screenSurface.copyFrom(vertLine, SCREEN_WIDTH - 4, 3);
 
 	// Restrict drawing area to exclude the borders at the edge of the screen
-	R2_GLOBALS._screenSurface._clipRect = Rect(4, 4, SCREEN_WIDTH - 4,
-		SCREEN_HEIGHT - 4);
+	R2_GLOBALS._screenSurface._clipRect = Rect(4, 3, SCREEN_WIDTH - 4,
+		SCREEN_HEIGHT - 3);
 }
 
 /*--------------------------------------------------------------------------*/






More information about the Scummvm-git-logs mailing list