From 828baf963afaf9fc3449774627e4e970677e061a Mon Sep 17 00:00:00 2001 From: Strangerke Date: Sun, 16 Feb 2014 21:51:50 +0100 Subject: TSAGE: Fix bug #6509 - Topmost line of scene isn't drawn --- engines/tsage/user_interface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/tsage/user_interface.cpp') diff --git a/engines/tsage/user_interface.cpp b/engines/tsage/user_interface.cpp index ae5c6c8cee..e0b624d7d5 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); } /*--------------------------------------------------------------------------*/ -- cgit v1.2.3 From 6e715e186a857e8ed35c7e49f80ce951d8897e35 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 18 Feb 2014 02:34:26 +0100 Subject: TSAGE: Make GPL headers consistent with themselves. --- engines/tsage/user_interface.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/tsage/user_interface.cpp') diff --git a/engines/tsage/user_interface.cpp b/engines/tsage/user_interface.cpp index e0b624d7d5..45bfe2b5ea 100644 --- a/engines/tsage/user_interface.cpp +++ b/engines/tsage/user_interface.cpp @@ -8,12 +8,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -- cgit v1.2.3