[Scummvm-git-logs] scummvm master -> 16aaca51f074daf8d2ceb2cb6fa806dafacab713

Strangerke noreply at scummvm.org
Thu Mar 26 15:57:49 UTC 2026


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
16aaca51f0 WAYNESWORLD: Fix issue in room 38 - The hypno board and the speaker were displayed after being taken care of


Commit: 16aaca51f074daf8d2ceb2cb6fa806dafacab713
    https://github.com/scummvm/scummvm/commit/16aaca51f074daf8d2ceb2cb6fa806dafacab713
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2026-03-26T16:57:27+01:00

Commit Message:
WAYNESWORLD: Fix issue in room 38 - The hypno board and the speaker were displayed after being taken care of

Changed paths:
    engines/waynesworld/gamelogic.cpp


diff --git a/engines/waynesworld/gamelogic.cpp b/engines/waynesworld/gamelogic.cpp
index f9cbf9e9399..ab3a351f301 100644
--- a/engines/waynesworld/gamelogic.cpp
+++ b/engines/waynesworld/gamelogic.cpp
@@ -8474,7 +8474,7 @@ void GameLogic::r38_updateRoomAnimations() {
 
 void GameLogic::r38_refreshRoomBackground() {
 	_r38_flags |= 0x01;
-	if (!_vm->_hasRoomAnimationCallback || !(_r38_flags & 0x08)) {
+	if (!_vm->_hasRoomAnimationCallback && !(_r38_flags & 0x08)) {
 		r38_initRoomAnimations();
 	}
 	if ((_r38_flags & 0x08)) {




More information about the Scummvm-git-logs mailing list