[Scummvm-git-logs] scummvm master -> bb45dcc72966ee17cc1bb0800506c81afda1a3e9
dreammaster
noreply at scummvm.org
Sun Jun 19 19:18:55 UTC 2022
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:
bb45dcc729 CHEWY: Fix endless loop at start of room 0 feeding
Commit: bb45dcc72966ee17cc1bb0800506c81afda1a3e9
https://github.com/scummvm/scummvm/commit/bb45dcc72966ee17cc1bb0800506c81afda1a3e9
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2022-06-19T12:18:45-07:00
Commit Message:
CHEWY: Fix endless loop at start of room 0 feeding
Changed paths:
engines/chewy/rooms/room00.cpp
diff --git a/engines/chewy/rooms/room00.cpp b/engines/chewy/rooms/room00.cpp
index 9f3242390e3..2e5a9e54618 100644
--- a/engines/chewy/rooms/room00.cpp
+++ b/engines/chewy/rooms/room00.cpp
@@ -74,7 +74,7 @@ bool Room0::timer(int16 timerNr, int16 aniNr) {
if (_G(timer_action_ctr) > 0) {
_G(uhr)->resetTimer(timerNr, 0);
--_G(timer_action_ctr);
- } else if (!is_chewy_busy()) {
+ } else if (!is_chewy_busy() && _G(flags).AutoAniPlay == 0) {
if (!_G(gameState).R0FueterLab)
_G(timer_action_ctr) = 2;
More information about the Scummvm-git-logs
mailing list