[Scummvm-git-logs] scummvm master -> e94f84e56487fd213319a3502179934c5b5995ff
AndywinXp
noreply at scummvm.org
Tue Jun 25 06:54:47 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:
e94f84e564 SCUMM: HE100: Add missing actor erase flags
Commit: e94f84e56487fd213319a3502179934c5b5995ff
https://github.com/scummvm/scummvm/commit/e94f84e56487fd213319a3502179934c5b5995ff
Author: AndywinXp (andywinxp at gmail.com)
Date: 2024-06-25T08:54:39+02:00
Commit Message:
SCUMM: HE100: Add missing actor erase flags
Changed paths:
engines/scumm/he/script_v100he.cpp
diff --git a/engines/scumm/he/script_v100he.cpp b/engines/scumm/he/script_v100he.cpp
index 43ade8ab2a4..46705ad98fc 100644
--- a/engines/scumm/he/script_v100he.cpp
+++ b/engines/scumm/he/script_v100he.cpp
@@ -425,10 +425,12 @@ void ScummEngine_v100he::o100_actorOps() {
break;
case SO_PRIORITY:
a->_layer = pop();
+ a->_needBgReset = true;
a->_needRedraw = true;
break;
case SO_ROOM_PALETTE:
a->_hePaletteNum = pop();
+ a->_needBgReset = true;
a->_needRedraw = true;
break;
case SO_SCALE:
@@ -437,6 +439,7 @@ void ScummEngine_v100he::o100_actorOps() {
break;
case SO_SHADOW:
a->_heShadow = pop();
+ a->_needBgReset = true;
a->_needRedraw = true;
break;
case SO_STEP_DIST:
More information about the Scummvm-git-logs
mailing list