[Scummvm-git-logs] scummvm master -> 9cdc66c848c31ea4f881e96c5b30c237802c5fe6
bluegr
noreply at scummvm.org
Wed Aug 28 16:55:42 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:
9cdc66c848 GRIM: Require libmpeg2 for the PS2 MI4 detection entries
Commit: 9cdc66c848c31ea4f881e96c5b30c237802c5fe6
https://github.com/scummvm/scummvm/commit/9cdc66c848c31ea4f881e96c5b30c237802c5fe6
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2024-08-28T19:55:26+03:00
Commit Message:
GRIM: Require libmpeg2 for the PS2 MI4 detection entries
This is a continuation of PR 5601. Since these entries use MPEG
videos, we disable them in builds that do not include libmpeg2
Changed paths:
engines/grim/detection.cpp
diff --git a/engines/grim/detection.cpp b/engines/grim/detection.cpp
index abb12393431..5f4029784f3 100644
--- a/engines/grim/detection.cpp
+++ b/engines/grim/detection.cpp
@@ -553,6 +553,8 @@ static const GrimGameDescription gameDescriptions[] = {
},
GType_MONKEY4
},
+
+#if defined(USE_MPEG2)
{
// Escape from Monkey Island English PS2
{
@@ -618,6 +620,8 @@ static const GrimGameDescription gameDescriptions[] = {
},
GType_MONKEY4
},
+#endif
+
{
// Escape from Monkey Island CD demo (English)
{
More information about the Scummvm-git-logs
mailing list