diff options
-rw-r--r-- | engines/lure/hotspots.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/lure/hotspots.cpp b/engines/lure/hotspots.cpp index fd2344772e..e6a6171677 100644 --- a/engines/lure/hotspots.cpp +++ b/engines/lure/hotspots.cpp @@ -3196,7 +3196,8 @@ void HotspotTickHandlers::catrionaAnimHandler(Hotspot &h) { h.decrFrameCtr(); } else { h.executeScript(); - h.setFrameCtr(h.actionCtr()); + int delayVal = (h.actionCtr() == 0) ? 5 : h.actionCtr(); + h.setFrameCtr(delayVal); } } |