[Scummvm-git-logs] scummvm master -> c4d4afb64938ca0f632a9619b080a88b2bcd8237
mduggan
noreply at scummvm.org
Mon Jul 22 09:36:50 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:
c4d4afb649 DGDS: Fix warning from missing break
Commit: c4d4afb64938ca0f632a9619b080a88b2bcd8237
https://github.com/scummvm/scummvm/commit/c4d4afb64938ca0f632a9619b080a88b2bcd8237
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2024-07-22T19:36:15+10:00
Commit Message:
DGDS: Fix warning from missing break
Changed paths:
engines/dgds/ttm.cpp
diff --git a/engines/dgds/ttm.cpp b/engines/dgds/ttm.cpp
index fcdad7d0e64..d54a00651a8 100644
--- a/engines/dgds/ttm.cpp
+++ b/engines/dgds/ttm.cpp
@@ -820,6 +820,7 @@ void TTMInterpreter::handleOperation(TTMEnviro &env, TTMSeq &seq, uint16 op, byt
Graphics::FloodFill f(_vm->_compositionBuffer.surfacePtr(), 0, seq._drawColFG);
f.addSeed(ivals[0], ivals[1]);
f.fill();
+ break;
}
case 0xaf10: { // DRAW EMPTY POLY
ClipSurface clipSurf(seq._drawWin, _vm->_compositionBuffer.surfacePtr());
More information about the Scummvm-git-logs
mailing list