[Scummvm-git-logs] scummvm master -> 4757680160afda74aa52776e74d27e6b4ca8f05e
sev-
sev at scummvm.org
Thu Jul 23 20:06:31 UTC 2020
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
5dd3def063 NEWS: Mention Glk engine support
4757680160 DIRECTOR: Fix warning
Commit: 5dd3def0631e27a46af782edc8b444f978cf15fc
https://github.com/scummvm/scummvm/commit/5dd3def0631e27a46af782edc8b444f978cf15fc
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-07-23T22:04:14+02:00
Commit Message:
NEWS: Mention Glk engine support
Changed paths:
NEWS.md
diff --git a/NEWS.md b/NEWS.md
index 66d6321fc3..fd8e59a6c6 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -8,6 +8,12 @@ For a more comprehensive changelog of the latest experimental code, see:
- Added support for Ultima IV - Quest of the Avatar.
- Added support for Ultima VI - The False Prophet.
- Added support for Ultima VIII - Pagan.
+ - Added support for Interactive Fiction games based on the following engines:
+ ADRIFT (except for version 5), AdvSys, AGT, Alan 2 & 3,
+ Archetype (newly reimplemented for Glk from the original Pascal sources),
+ Hugo, JACL, Level 9, Magnetic Scrolls, Quest, Scott Adams,
+ ZCode (all ZCode games except the Infocom graphical version 6 games).
+ Currently, more than 1600 games are detected and supported.
General:
- Autosaves are now supported for all the engines.
@@ -23,8 +29,8 @@ For a more comprehensive changelog of the latest experimental code, see:
- Added support for the PC-98 version of Eye of the Beholder I.
- Added support for the Spanish versions of Eye of the Beholder I and II, Legend of
Kyrandia 1 (CD-ROM fan translation) and Legend of Kyrandia 2 (floppy version and
- CD-ROM fan translation). Fix Spanish Lands of Lore support (floppy version and
- CD-ROM fan translation).
+ CD-ROM fan translation). Fix Spanish Lands of Lore support (floppy version and
+ CD-ROM fan translation).
Prince:
- Fixed inventory item descriptions display.
Commit: 4757680160afda74aa52776e74d27e6b4ca8f05e
https://github.com/scummvm/scummvm/commit/4757680160afda74aa52776e74d27e6b4ca8f05e
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-07-23T22:06:13+02:00
Commit Message:
DIRECTOR: Fix warning
Changed paths:
engines/director/castmember.cpp
diff --git a/engines/director/castmember.cpp b/engines/director/castmember.cpp
index 69673cc279..fb723f7ca7 100644
--- a/engines/director/castmember.cpp
+++ b/engines/director/castmember.cpp
@@ -555,7 +555,7 @@ ShapeCastMember::ShapeCastMember(Cast *cast, uint16 castId, Common::SeekableRead
: CastMember(cast, castId, stream) {
_type = kCastShape;
- byte flags, unk1;
+ byte unk1;
_ink = kInkTypeCopy;
@@ -583,7 +583,7 @@ ShapeCastMember::ShapeCastMember(Cast *cast, uint16 castId, Common::SeekableRead
_lineThickness = stream.readByte();
_lineDirection = stream.readByte();
} else {
- flags = stream.readByte(); // FIXME: Was this copied from D4 by mistake?
+ stream.readByte(); // FIXME: Was this copied from D4 by mistake?
unk1 = stream.readByte();
_initialRect = Movie::readRect(stream);
@@ -598,8 +598,8 @@ ShapeCastMember::ShapeCastMember(Cast *cast, uint16 castId, Common::SeekableRead
}
_modified = false;
- debugC(3, kDebugLoading, "ShapeCastMember: fl: %x unk1: %x type: %d pat: %d fg: %d bg: %d fill: %d thick: %d dir: %d",
- flags, unk1, _shapeType, _pattern, _fgCol, _bgCol, _fillType, _lineThickness, _lineDirection);
+ debugC(3, kDebugLoading, "ShapeCastMember: unk1: %x type: %d pat: %d fg: %d bg: %d fill: %d thick: %d dir: %d",
+ unk1, _shapeType, _pattern, _fgCol, _bgCol, _fillType, _lineThickness, _lineDirection);
if (debugChannelSet(3, kDebugLoading))
_initialRect.debugPrint(0, "ShapeCastMember: rect:");
More information about the Scummvm-git-logs
mailing list