[Scummvm-git-logs] scummvm master -> 7527e4f98dd3eb5df2cc0711c086708d025732b4

dreammaster noreply at scummvm.org
Wed Apr 16 02:17:00 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:
7527e4f98d MADS: Fix for bug 15867: UI not updating


Commit: 7527e4f98dd3eb5df2cc0711c086708d025732b4
    https://github.com/scummvm/scummvm/commit/7527e4f98dd3eb5df2cc0711c086708d025732b4
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2025-04-15T19:16:54-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