[Scummvm-git-logs] scummvm master -> 2e2d8950ec03a3c208d9af3ec8033990fbfa7f8a

sev- noreply at scummvm.org
Sat Nov 16 13:26:58 UTC 2024


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:
2e2d8950ec SCUMM: Do not run MacGUI on HE games


Commit: 2e2d8950ec03a3c208d9af3ec8033990fbfa7f8a
    https://github.com/scummvm/scummvm/commit/2e2d8950ec03a3c208d9af3ec8033990fbfa7f8a
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-11-16T14:26:12+01:00

Commit Message:
SCUMM: Do not run MacGUI on HE games

Changed paths:
    engines/scumm/scumm.cpp


diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp
index 919e1433654..6f883a02937 100644
--- a/engines/scumm/scumm.cpp
+++ b/engines/scumm/scumm.cpp
@@ -1186,7 +1186,7 @@ Common::Error ScummEngine::init() {
 
 	Common::Path macResourceFile;
 
-	if (_game.platform == Common::kPlatformMacintosh) {
+	if (_game.platform == Common::kPlatformMacintosh && _game.heversion == 0) {
 		Common::MacResManager resource;
 
 		_macScreen = new Graphics::Surface();




More information about the Scummvm-git-logs mailing list