From 5d42202b2d82999b4fe5b4d6038a64a6294acd1e Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sun, 12 Oct 2003 13:44:37 +0000 Subject: mac loom uses different var. svn-id: r10749 --- scumm/scummvm.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'scumm') diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 94f79c615a..aa1e9fa721 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -1370,7 +1370,11 @@ load_game: // HACK as in game save stuff isn't supported currently if (_gameId == GID_LOOM || _gameId == GID_LOOM256) { int args = 2; - uint value = (_gameId == GID_LOOM256) ? 150 : 100; + uint value; + if (_features & GF_MACINTOSH) + value = 105; + else + value = (_gameId == GID_LOOM256) ? 150 : 100; byte restoreScript = (_features & GF_FMTOWNS) ? 17 : 18; // if verbs should be shown restore them if (VAR(value) == 2) -- cgit v1.2.3