[Scummvm-git-logs] scummvm master -> f0fb68f670043576bceff9136c2b6f0ac5e271ce
digitall
noreply at scummvm.org
Tue Dec 17 08:16:06 UTC 2024
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:
f0fb68f670 DGDS: Fix Unintended Fallthrough GCC Compiler Warnings
Commit: f0fb68f670043576bceff9136c2b6f0ac5e271ce
https://github.com/scummvm/scummvm/commit/f0fb68f670043576bceff9136c2b6f0ac5e271ce
Author: D G Turner (digitall at scummvm.org)
Date: 2024-12-17T08:14:43Z
Commit Message:
DGDS: Fix Unintended Fallthrough GCC Compiler Warnings
Changed paths:
engines/dgds/ttm.cpp
diff --git a/engines/dgds/ttm.cpp b/engines/dgds/ttm.cpp
index 00a620fcc1d..8259db92b57 100644
--- a/engines/dgds/ttm.cpp
+++ b/engines/dgds/ttm.cpp
@@ -1128,6 +1128,7 @@ bool TTMInterpreter::handleOperation(TTMEnviro &env, TTMSeq &seq, uint16 op, byt
} else {
warning("TODO: Trying to stop raw SFX but nothing loaded");
}
+ break;
}
case 0xc250: { // SYNC RAW SFX
uint16 hi = (uint16)ivals[1];
@@ -1139,6 +1140,7 @@ bool TTMInterpreter::handleOperation(TTMEnviro &env, TTMSeq &seq, uint16 op, byt
env.scr->seek(-6, SEEK_CUR);
return false;
}*/
+ break;
}
case 0xf010: { // LOAD SCR: filename:str
if (seq._executed) // this is a one-shot op
More information about the Scummvm-git-logs
mailing list