[Scummvm-git-logs] scummvm master -> f059c2055364e8f512a062b25cb565212d2b63f4
kelmer44
noreply at scummvm.org
Tue Sep 9 09:06:15 UTC 2025
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:
f059c20553 TOT: Fix fall-through on animations' switch case
Commit: f059c2055364e8f512a062b25cb565212d2b63f4
https://github.com/scummvm/scummvm/commit/f059c2055364e8f512a062b25cb565212d2b63f4
Author: gsanmartin (gabriel.sanmartin at dna.inc)
Date: 2025-09-09T11:06:01+02:00
Commit Message:
TOT: Fix fall-through on animations' switch case
Changed paths:
engines/tot/anims.cpp
diff --git a/engines/tot/anims.cpp b/engines/tot/anims.cpp
index cba07ea2345..410a6eadbd9 100644
--- a/engines/tot/anims.cpp
+++ b/engines/tot/anims.cpp
@@ -168,8 +168,10 @@ void handleFlcEvent(byte eventNumber, uint loopNumber, byte frameCount) {
if (isEnglish) {
clearCharacterText();
}
+ break;
case 74:
if (isEnglish) {
+ debug(3, "Showing character text in English: %s\n", messages[35]);
drawCharacterText(
messages[35],
messages[36],
@@ -177,6 +179,7 @@ void handleFlcEvent(byte eventNumber, uint loopNumber, byte frameCount) {
messages[38],
messages[39]);
}
+ break;
case 75:
if (isSpanish) {
clearCharacterText();
More information about the Scummvm-git-logs
mailing list