[Scummvm-git-logs] scummvm master -> 03f247cfa06b215ed1c12243320432850f55b0e8
sev-
noreply at scummvm.org
Tue May 14 20:47: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:
03f247cfa0 DIRECTOR: Replace not portable constant
Commit: 03f247cfa06b215ed1c12243320432850f55b0e8
https://github.com/scummvm/scummvm/commit/03f247cfa06b215ed1c12243320432850f55b0e8
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-05-14T22:47:28+02:00
Commit Message:
DIRECTOR: Replace not portable constant
Changed paths:
engines/director/lingo/lingodec/handler.h
diff --git a/engines/director/lingo/lingodec/handler.h b/engines/director/lingo/lingodec/handler.h
index 1d64b4efdcd..8fcafcfdad7 100644
--- a/engines/director/lingo/lingodec/handler.h
+++ b/engines/director/lingo/lingodec/handler.h
@@ -100,7 +100,7 @@ struct Bytecode {
Common::SharedPtr<Node> translation;
Bytecode(byte op, int32 o, uint32 p)
- : opID(op), obj(o), pos(p), tag(kTagNone), ownerLoop(UINT32_MAX) {
+ : opID(op), obj(o), pos(p), tag(kTagNone), ownerLoop(0xffffffff) {
opcode = static_cast<OpCode>(op >= 0x40 ? 0x40 + op % 0x40 : op);
}
};
More information about the Scummvm-git-logs
mailing list