[Scummvm-git-logs] scummvm master -> f660fa1302afb1a4698c981aef5bdefa2b6c1ce4
AndywinXp
noreply at scummvm.org
Wed Sep 17 15:42:08 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:
f660fa1302 SCUMM: GUI: Fix #16204
Commit: f660fa1302afb1a4698c981aef5bdefa2b6c1ce4
https://github.com/scummvm/scummvm/commit/f660fa1302afb1a4698c981aef5bdefa2b6c1ce4
Author: AndywinXp (andywinxp at gmail.com)
Date: 2025-09-17T17:42:02+02:00
Commit Message:
SCUMM: GUI: Fix #16204
This fixes #16204:
"SCUMM: GUI banner doesn't always restore background properly when closed"
Changed paths:
engines/scumm/gfx_gui.cpp
diff --git a/engines/scumm/gfx_gui.cpp b/engines/scumm/gfx_gui.cpp
index 713670be0ee..2db2b6c02a9 100644
--- a/engines/scumm/gfx_gui.cpp
+++ b/engines/scumm/gfx_gui.cpp
@@ -556,6 +556,7 @@ Common::KeyState ScummEngine::showOldStyleBannerAndPause(const char *msg, int co
_virtscr[kBannerVirtScreen].setDirtyRange(0, _virtscr[kBannerVirtScreen].h);
updateDirtyScreen(kBannerVirtScreen);
_virtscr[kMainVirtScreen].setDirtyRange(startingPointY - _virtscr[kMainVirtScreen].topline, startingPointY - _virtscr[kMainVirtScreen].topline + _virtscr[kBannerVirtScreen].h);
+ updateDirtyScreen(kMainVirtScreen);
}
}
More information about the Scummvm-git-logs
mailing list