[Scummvm-git-logs] scummvm master -> 5274c378468ff7b9ab1df4bdb869fca489db8d6a

AndywinXp noreply at scummvm.org
Wed Jun 18 10:52:23 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:
5274c37846 LASTEXPRESS: Prevent screen update on debug level >= 3 without USE_IMGUI


Commit: 5274c378468ff7b9ab1df4bdb869fca489db8d6a
    https://github.com/scummvm/scummvm/commit/5274c378468ff7b9ab1df4bdb869fca489db8d6a
Author: AndywinXp (andywinxp at gmail.com)
Date: 2025-06-18T12:52:18+02:00

Commit Message:
LASTEXPRESS: Prevent screen update on debug level >= 3 without USE_IMGUI

Changed paths:
    engines/lastexpress/lastexpress.cpp


diff --git a/engines/lastexpress/lastexpress.cpp b/engines/lastexpress/lastexpress.cpp
index a8a7c0ebdc7..48fe88822a0 100644
--- a/engines/lastexpress/lastexpress.cpp
+++ b/engines/lastexpress/lastexpress.cpp
@@ -455,10 +455,12 @@ bool LastExpressEngine::handleEvents() {
 	Common::Event ev;
 	int32 curFlags = 0;
 
+#ifdef USE_IMGUI
 	// Allow the debugger to pick up the changes...
 	if (gDebugLevel >= 3) {
 		_system->updateScreen();
 	}
+#endif
 
 	while (_eventMan->pollEvent(ev)) {
 		switch (ev.type) {




More information about the Scummvm-git-logs mailing list