[Scummvm-git-logs] scummvm branch-2-9 -> f795e05c7fa5489f2839a302a152a52ff1a86b3c
dreammaster
noreply at scummvm.org
Wed Apr 16 04:58:54 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:
f795e05c7f MADS: Fix for bug 15867: UI not updating
Commit: f795e05c7fa5489f2839a302a152a52ff1a86b3c
https://github.com/scummvm/scummvm/commit/f795e05c7fa5489f2839a302a152a52ff1a86b3c
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2025-04-15T21:58:49-07:00
Commit Message:
MADS: Fix for bug 15867: UI not updating
Changed paths:
engines/mads/events.cpp
diff --git a/engines/mads/events.cpp b/engines/mads/events.cpp
index 38462942657..1bac7100d44 100644
--- a/engines/mads/events.cpp
+++ b/engines/mads/events.cpp
@@ -211,6 +211,10 @@ bool EventsManager::checkForNextFrameCounter() {
// Do any palette cycling
_vm->_game->_scene.animatePalette();
+ // FIXME: Bodge to fix bug 15867: UI not updating
+ _vm->_screen->addDirtyRect(Common::Rect(
+ 0, MADS_SCENE_HEIGHT, 320, 200));
+
// Display the frame
_vm->_screen->update();
More information about the Scummvm-git-logs
mailing list