[Scummvm-git-logs] scummvm master -> 7bbff0683cfea9a9deb006ed914cd65329cc23fa
sev-
sev at scummvm.org
Fri Oct 22 06:11:50 UTC 2021
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:
7bbff0683c GROOVIE: Fix logic for opGallery
Commit: 7bbff0683cfea9a9deb006ed914cd65329cc23fa
https://github.com/scummvm/scummvm/commit/7bbff0683cfea9a9deb006ed914cd65329cc23fa
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-10-22T09:11:33+03:00
Commit Message:
GROOVIE: Fix logic for opGallery
Changed paths:
engines/groovie/logic/t11hgame.cpp
diff --git a/engines/groovie/logic/t11hgame.cpp b/engines/groovie/logic/t11hgame.cpp
index 678d4f27c6..9cf6c3d23f 100644
--- a/engines/groovie/logic/t11hgame.cpp
+++ b/engines/groovie/logic/t11hgame.cpp
@@ -664,7 +664,7 @@ void T11hGame::opGallery() {
byte status1[kPieceCount];
byte status2[kPieceCount];
- memcpy(pieceStatus, _scriptVariables + 25, kPieceCount);
+ memcpy(pieceStatus, _scriptVariables + 26, kPieceCount);
int selectedPieces = 0;
for (int i = 0; i < kPieceCount; i++) {
More information about the Scummvm-git-logs
mailing list