[Scummvm-git-logs] scummvm master -> 180b1ae39284c16d2be12f260ec247195e3506b0
mduggan
noreply at scummvm.org
Fri Jun 19 23:38:25 UTC 2026
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:
180b1ae392 ACCESS: Fix possible unfilled pixel in Noctropolis dialogs
Commit: 180b1ae39284c16d2be12f260ec247195e3506b0
https://github.com/scummvm/scummvm/commit/180b1ae39284c16d2be12f260ec247195e3506b0
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2026-06-20T09:38:10+10:00
Commit Message:
ACCESS: Fix possible unfilled pixel in Noctropolis dialogs
The fill rect calculation was off by one, leaving an empty row or column on
some dialogs.
Changed paths:
engines/access/bubble_box.cpp
diff --git a/engines/access/bubble_box.cpp b/engines/access/bubble_box.cpp
index 7e851dfb4cf..f608616dbdb 100644
--- a/engines/access/bubble_box.cpp
+++ b/engines/access/bubble_box.cpp
@@ -376,10 +376,10 @@ void BubbleBox::doBox_v3(int item, int box) {
_vm->_screen->saveBlock(_bounds);
- screen.fillRect(Common::Rect(boxX + 5, boxY + 5, boxX + 5 + boxWidth * 16 + 15, boxY + 5 + boxHeight * 16 + 8), 246);
+ screen.fillRect(Common::Rect(boxX + 5, boxY + 5, boxX + 5 + boxWidth * 16 + 16, boxY + 5 + boxHeight * 16 + 9), 246);
if (_type & kTextBoxNoctCaption) {
- screen.fillRect(Common::Rect(boxX + 5, boxY + 5, boxX + 5 + boxWidth * 16 + 15, boxY + 5 + fontHeight), 236);
+ screen.fillRect(Common::Rect(boxX + 5, boxY + 5, boxX + 5 + boxWidth * 16 + 16, boxY + 6 + fontHeight), 236);
screen.hLine(boxX + 5, boxY + 5 + fontHeight, boxX + 5 + boxWidth * 16 + 15, 237);
}
More information about the Scummvm-git-logs
mailing list