Skip to content

Commit

Permalink
SCI: Set Mac versions of LSL1 and LSL5 to screen height 190.
Browse files Browse the repository at this point in the history
This fixes bug #3310782. However, as I was unable to get the games working in
a Mac emulator, this is an educated guess at this point.
  • Loading branch information
waltervn committed Jun 4, 2011
1 parent 656c252 commit 4628833
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions engines/sci/graphics/screen.cpp
Expand Up @@ -763,11 +763,14 @@ int16 GfxScreen::kernelPicNotValid(int16 newPicNotValid) {
uint16 GfxScreen::getLowResScreenHeight() {
// Some Mac SCI1/1.1 games only take up 190 rows and do not
// have the menu bar.
// TODO: Verify that LSL1 and LSL5 use height 190
if (g_sci->getPlatform() == Common::kPlatformMacintosh) {
switch (g_sci->getGameId()) {
case GID_FREDDYPHARKAS:
case GID_KQ5:
case GID_KQ6:
case GID_LSL1:
case GID_LSL5:
case GID_SQ1:
return 190;
default:
Expand Down

0 comments on commit 4628833

Please sign in to comment.