[Scummvm-git-logs] scummvm master -> 9ec362294bc361391e90c505cb6f626dd3cde163
neuromancer
noreply at scummvm.org
Thu Dec 19 19:33:17 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:
9ec362294b FREESCAPE: avoid re-executing group opcode 0xff
Commit: 9ec362294bc361391e90c505cb6f626dd3cde163
https://github.com/scummvm/scummvm/commit/9ec362294bc361391e90c505cb6f626dd3cde163
Author: neuromancer (gustavo.grieco at gmail.com)
Date: 2024-12-19T20:35:11+01:00
Commit Message:
FREESCAPE: avoid re-executing group opcode 0xff
Changed paths:
engines/freescape/objects/group.cpp
diff --git a/engines/freescape/objects/group.cpp b/engines/freescape/objects/group.cpp
index 3689aa84a9e..b0f7a299bf8 100644
--- a/engines/freescape/objects/group.cpp
+++ b/engines/freescape/objects/group.cpp
@@ -120,6 +120,8 @@ void Group::run() {
debugC(1, kFreescapeDebugGroup, "Executing group rewind");
_active = true;
_step = -1;
+ if (opcode == 0xff)
+ return;
//reset();
}
More information about the Scummvm-git-logs
mailing list