[Scummvm-git-logs] scummvm master -> cde22a74bae40b1c91f35a68441790f0f98b81f0
aquadran
noreply at scummvm.org
Sat Jan 31 08:43:43 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:
cde22a74ba WINTERMUTE: Corrected condition for _forcedTalkAnimName
Commit: cde22a74bae40b1c91f35a68441790f0f98b81f0
https://github.com/scummvm/scummvm/commit/cde22a74bae40b1c91f35a68441790f0f98b81f0
Author: PaweÅ KoÅodziejski (aquadran at gmail.com)
Date: 2026-01-31T09:43:38+01:00
Commit Message:
WINTERMUTE: Corrected condition for _forcedTalkAnimName
Changed paths:
engines/wintermute/ad/ad_object.cpp
diff --git a/engines/wintermute/ad/ad_object.cpp b/engines/wintermute/ad/ad_object.cpp
index c62d3ee54b2..ee9709c3612 100644
--- a/engines/wintermute/ad/ad_object.cpp
+++ b/engines/wintermute/ad/ad_object.cpp
@@ -878,7 +878,7 @@ void AdObject::talk(const char *text, const char *sound, uint32 duration, const
return;
}
- if (_forcedTalkAnimName && _forcedTalkAnimName[0] && _forcedTalkAnimUsed) {
+ if (_forcedTalkAnimName && _forcedTalkAnimUsed) {
SAFE_DELETE_ARRAY(_forcedTalkAnimName);
_forcedTalkAnimUsed = false;
}
More information about the Scummvm-git-logs
mailing list