[Scummvm-git-logs] scummvm branch-2-9 -> e94afe232d9cced43f1632a16b940fed3e45430d
mgerhardy
noreply at scummvm.org
Tue Feb 11 20:48:19 UTC 2025
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:
e94afe232d TWINE: Pressing Space in normal mode does not trigger use/talk action.
Commit: e94afe232d9cced43f1632a16b940fed3e45430d
https://github.com/scummvm/scummvm/commit/e94afe232d9cced43f1632a16b940fed3e45430d
Author: Martin Gerhardy (martin.gerhardy at gmail.com)
Date: 2025-02-11T21:47:58+01:00
Commit Message:
TWINE: Pressing Space in normal mode does not trigger use/talk action.
fixed bug https://bugs.scummvm.org/ticket/15733
Changed paths:
engines/twine/scene/movements.cpp
diff --git a/engines/twine/scene/movements.cpp b/engines/twine/scene/movements.cpp
index cfb8412e397..358d25852ab 100644
--- a/engines/twine/scene/movements.cpp
+++ b/engines/twine/scene/movements.cpp
@@ -245,6 +245,7 @@ void Movements::update() {
void Movements::processBehaviourExecution(int actorIdx) {
switch (_engine->_actor->_heroBehaviour) {
case HeroBehaviourType::kNormal:
+ _actionNormal = true;
break;
case HeroBehaviourType::kAthletic:
_engine->_animations->initAnim(AnimationTypes::kJump, AnimType::kAnimationThen, AnimationTypes::kStanding, actorIdx);
More information about the Scummvm-git-logs
mailing list