[Scummvm-git-logs] scummvm master -> 6141093e956a422ec1e69fd5e0a4416be30d3612
bluegr
noreply at scummvm.org
Tue Sep 8 06:23:10 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
6141093e95 DIRECTOR: Ignore unrelated NET.EXE projectors
Commit: 6141093e956a422ec1e69fd5e0a4416be30d3612
https://github.com/scummvm/scummvm/commit/6141093e956a422ec1e69fd5e0a4416be30d3612
Author: Hajin Jang (jb6804 at naver.com)
Date: 2026-09-08T09:23:06+03:00
Commit Message:
DIRECTOR: Ignore unrelated NET.EXE projectors
Some Zoombinis v2 discs contain a Director projector named NET.EXE
that only displays web links. The single-file The Net entry therefore
reported the projector as an unknown variant.
Graylist the generic filename so exact The Net signatures still match
while unrelated NET.EXE files are ignored.
Assisted-by: Codex:gpt-5.6
(cherry picked from commit 71d08062b8a2480a56b34622135e42bba5a040d2)
Changed paths:
engines/advancedDetector.cpp
diff --git a/engines/advancedDetector.cpp b/engines/advancedDetector.cpp
index 1288e44761f..b93e815d80a 100644
--- a/engines/advancedDetector.cpp
+++ b/engines/advancedDetector.cpp
@@ -973,6 +973,8 @@ static const char *const grayList[] = {
"Double-click me",
"engine.exe",
"install.exe",
+ // Some Zoombinis v2 discs use NET.EXE for a non-game Director link menu.
+ "net.exe",
"play.exe",
"start.exe",
"item.dat",
More information about the Scummvm-git-logs
mailing list