[Scummvm-git-logs] scummvm master -> c731b511a37a164f86096121788d76bba2ab3548
lotharsm
noreply at scummvm.org
Tue Oct 14 11:08:28 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:
c731b511a3 DIRECTOR: LINGO: Set updateScreen() throttle in the execution loop to 20ms
Commit: c731b511a37a164f86096121788d76bba2ab3548
https://github.com/scummvm/scummvm/commit/c731b511a37a164f86096121788d76bba2ab3548
Author: Lothar Serra Mari (mail at serra.me)
Date: 2025-10-14T13:08:10+02:00
Commit Message:
DIRECTOR: LINGO: Set updateScreen() throttle in the execution loop to 20ms
Changed paths:
engines/director/lingo/lingo.cpp
diff --git a/engines/director/lingo/lingo.cpp b/engines/director/lingo/lingo.cpp
index ef9c8c406af..f08175b21dd 100644
--- a/engines/director/lingo/lingo.cpp
+++ b/engines/director/lingo/lingo.cpp
@@ -654,7 +654,7 @@ bool Lingo::execute(int targetFrame) {
Score *score = movie->getScore();
score->updateWidgets(true);
- if (g_system->getMillis() - lastUpdate > 10) {
+ if (g_system->getMillis() - lastUpdate > 20) {
lastUpdate = g_system->getMillis();
g_system->updateScreen();
}
More information about the Scummvm-git-logs
mailing list