[Scummvm-git-logs] scummvm master -> ab5a07857ed8612f2c7bc2a3e315b5f7fb03a137
sev-
sev at scummvm.org
Sat Oct 17 23:51:30 UTC 2020
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:
ab5a07857e PRINCE: Added comment for fix for bug#11771
Commit: ab5a07857ed8612f2c7bc2a3e315b5f7fb03a137
https://github.com/scummvm/scummvm/commit/ab5a07857ed8612f2c7bc2a3e315b5f7fb03a137
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-10-18T01:51:05+02:00
Commit Message:
PRINCE: Added comment for fix for bug#11771
Changed paths:
engines/prince/sound.cpp
diff --git a/engines/prince/sound.cpp b/engines/prince/sound.cpp
index a4880f793f..b8a70014d9 100644
--- a/engines/prince/sound.cpp
+++ b/engines/prince/sound.cpp
@@ -157,6 +157,10 @@ void PrinceEngine::setVoice(uint16 slot, uint32 sampleSlot, uint16 flag) {
sampleName = Common::String::format("inv%02d-01.WAV", currentString - 70000);
} else if (currentString >= 60000) {
sampleName = Common::String::format("M%04d-%02d.WAV", currentString - 60000, flag);
+ // String 316.
+ // Fixes PRINCE: conversation with the priest bug #11771
+ // When Galador starts conversation with the priest with any gesture,
+ // the priest sits down to his place and conversation cannot be continued.
} else if (currentString == 316 || currentString >= 2000) {
return;
} else if (flag >= 100) {
More information about the Scummvm-git-logs
mailing list