[Scummvm-git-logs] scummvm master -> 63dbf653453e4fc83ea76104c9a26badac953f7f
mduggan
noreply at scummvm.org
Wed Jan 8 08:41:32 UTC 2025
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:
63dbf65345 DGDS: Adjust comment to placate gcc warning
Commit: 63dbf653453e4fc83ea76104c9a26badac953f7f
https://github.com/scummvm/scummvm/commit/63dbf653453e4fc83ea76104c9a26badac953f7f
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2025-01-08T19:40:58+11:00
Commit Message:
DGDS: Adjust comment to placate gcc warning
Changed paths:
engines/dgds/ttm.cpp
diff --git a/engines/dgds/ttm.cpp b/engines/dgds/ttm.cpp
index 09209b77737..17915de6262 100644
--- a/engines/dgds/ttm.cpp
+++ b/engines/dgds/ttm.cpp
@@ -924,8 +924,9 @@ void TTMInterpreter::handleOperation(TTMEnviro &env, TTMSeq &seq, uint16 op, byt
r.grow(-1);
r.clip(seq._drawWin);
_vm->_compositionBuffer.fillRect(r, seq._drawColBG);
- // FALL THROUGH to draw the border
}
+ // then to draw the border, we (drum roll)...
+ // FALL THROUGH
case 0xa110: { // DRAW EMPTY RECT x1,y1,x2,y2:int
const Common::Rect r(Common::Point(ivals[0], ivals[1]), ivals[2], ivals[3]);
Drawing::rectClipped(r, seq._drawWin, &_vm->_compositionBuffer, seq._drawColFG);
More information about the Scummvm-git-logs
mailing list