[Scummvm-cvs-logs] scummvm master -> 6dbdf037461eced4a86b7da0b2da13329d9cb3f7

clone2727 clone2727 at gmail.com
Wed Jan 7 06:30:46 CET 2015


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:
6dbdf03746 SCI: Fix Mac games with a height of 190


Commit: 6dbdf037461eced4a86b7da0b2da13329d9cb3f7
    https://github.com/scummvm/scummvm/commit/6dbdf037461eced4a86b7da0b2da13329d9cb3f7
Author: Matthew Hoops (clone2727 at gmail.com)
Date: 2015-01-07T00:29:50-05:00

Commit Message:
SCI: Fix Mac games with a height of 190

A regression from 72e6a9eeab1082892e5d77fabc4f0b50f839615a

Changed paths:
    engines/sci/graphics/screen.cpp



diff --git a/engines/sci/graphics/screen.cpp b/engines/sci/graphics/screen.cpp
index 2f95bf7..5a3b30f 100644
--- a/engines/sci/graphics/screen.cpp
+++ b/engines/sci/graphics/screen.cpp
@@ -81,7 +81,8 @@ GfxScreen::GfxScreen(ResourceManager *resMan) : _resMan(resMan) {
 		case GID_LSL1:
 		case GID_LSL5:
 		case GID_SQ1:
-			_width = 190;
+			_scriptHeight = 190;
+			break;
 		default:
 			break;
 		}






More information about the Scummvm-git-logs mailing list