[Scummvm-git-logs] scummvm master -> edc6a54044e14879d84d8d1a9f74e37fb1dd8507

sev- noreply at scummvm.org
Sat Jun 13 20:39:18 UTC 2026


This automated email contains information about 5 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
8e87557657 BOLT: Sort files in the module.mk
e5804e3251 NEWS: Cartoon Carnival is released before pelrock
a2c66abebb DIRECTOR: LINGO: Fix warning
9c98dc3ed2 DIRECTOR: LINGO: Fix warning
edc6a54044 DIRECTOR: Make savegames mixed-in to SearchSet case-insensitive


Commit: 8e87557657ba17814f3bf6d81e4b1df5771db070
    https://github.com/scummvm/scummvm/commit/8e87557657ba17814f3bf6d81e4b1df5771db070
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-06-13T19:08:35+02:00

Commit Message:
BOLT: Sort files in the module.mk

Changed paths:
    engines/bolt/module.mk


diff --git a/engines/bolt/module.mk b/engines/bolt/module.mk
index 8c904d6c540..fc3a3cb2e78 100644
--- a/engines/bolt/module.mk
+++ b/engines/bolt/module.mk
@@ -3,8 +3,8 @@ MODULE := engines/bolt
 MODULE_OBJS = \
 	anim.o \
 	av.o \
-	carnival/barker.o \
 	bolt.o \
+	carnival/barker.o \
 	carnival/booth.o \
 	carnival/booths/fred.o \
 	carnival/booths/george.o \


Commit: e5804e3251831e71e0c1f1d6f15795bfb1f2cbdd
    https://github.com/scummvm/scummvm/commit/e5804e3251831e71e0c1f1d6f15795bfb1f2cbdd
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-06-13T19:09:58+02:00

Commit Message:
NEWS: Cartoon Carnival is released before pelrock

Changed paths:
    NEWS.md


diff --git a/NEWS.md b/NEWS.md
index 2bedf86d620..edd83a15104 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -7,8 +7,8 @@ For a more comprehensive changelog of the latest experimental code, see:
    - Added support for Nancy Drew: The Haunted Carousel.
    - Added support for Nancy Drew: Danger on Deception Island.
    - Added support for Noctropolis.
-   - Added support for Alfred Pelrock: En Busca de un Sueño.
    - Added support for Cartoon Carnival.
+   - Added support for Alfred Pelrock: En Busca de un Sueño.
 
  General:
    - Highlight clickable links in the GUI with a cursor change.


Commit: a2c66abebb71a7c20229f4193101d1b4318910da
    https://github.com/scummvm/scummvm/commit/a2c66abebb71a7c20229f4193101d1b4318910da
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-06-13T21:39:02+02:00

Commit Message:
DIRECTOR: LINGO: Fix warning

Changed paths:
    engines/director/lingo/lingo-builtins.cpp


diff --git a/engines/director/lingo/lingo-builtins.cpp b/engines/director/lingo/lingo-builtins.cpp
index 8126a6843e7..6b97ddeba8d 100644
--- a/engines/director/lingo/lingo-builtins.cpp
+++ b/engines/director/lingo/lingo-builtins.cpp
@@ -633,7 +633,7 @@ void LB::b_integer(int nargs) {
 		//   put i & " = " & integer("12345" & numToChar(i))
 		// end repeat
 		if (endPtr && endPtr != src.c_str() && (
-			(*endPtr >= 0 && *endPtr < 45) ||
+			(*endPtr < 45) ||
 			(*endPtr == 47) ||
 			(*endPtr >= 58 && *endPtr < 65) ||
 			(*endPtr >= 91 && *endPtr < 95) ||


Commit: 9c98dc3ed2b5d4c0e847ab4ff1704f4fc463b02d
    https://github.com/scummvm/scummvm/commit/9c98dc3ed2b5d4c0e847ab4ff1704f4fc463b02d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-06-13T21:42:13+02:00

Commit Message:
DIRECTOR: LINGO: Fix warning

Changed paths:
    engines/director/lingo/lingo-events.cpp


diff --git a/engines/director/lingo/lingo-events.cpp b/engines/director/lingo/lingo-events.cpp
index cd47531690c..d44bc5b28fe 100644
--- a/engines/director/lingo/lingo-events.cpp
+++ b/engines/director/lingo/lingo-events.cpp
@@ -576,6 +576,7 @@ void Movie::queueEvent(Common::Queue<LingoEvent> &queue, LEvent event, int targe
 				queue.push(LingoEvent(kEventMouseUp, mouseUpEventId, kCastHandler, false, pos, spriteId));
 				break;
 			}
+			// fall through
 		case kEventRightMouseUp:
 		case kEventRightMouseDown:
 		case kEventBeginSprite:


Commit: edc6a54044e14879d84d8d1a9f74e37fb1dd8507
    https://github.com/scummvm/scummvm/commit/edc6a54044e14879d84d8d1a9f74e37fb1dd8507
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-06-13T22:38:11+02:00

Commit Message:
DIRECTOR: Make savegames mixed-in to SearchSet case-insensitive

This matches the original behavior and prevents bizarre bugs when
we cannot find files, while they're still on disk

Changed paths:
    engines/director/archive.h


diff --git a/engines/director/archive.h b/engines/director/archive.h
index 38ca6e9f68a..071c4fa8d44 100644
--- a/engines/director/archive.h
+++ b/engines/director/archive.h
@@ -283,7 +283,7 @@ public:
 	Common::SeekableReadStream *createReadStreamForMember(const Common::Path &path) const override;
 
 private:
-	typedef Common::HashMap<Common::String, Common::String> FileMap;
+	typedef Common::HashMap<Common::String, Common::String, Common::IgnoreCase_Hash, Common::IgnoreCase_EqualTo> FileMap;
 	FileMap _files;
 };
 




More information about the Scummvm-git-logs mailing list