[Scummvm-git-logs] scummvm master -> a16fef0c2b1fa178a841e58cb77bc2b04ba63fca

sev- noreply at scummvm.org
Sat Oct 18 22:05: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:
a16fef0c2b DIRECTOR: DT: Avoid duplicate IDs when rendering Score in extended format


Commit: a16fef0c2b1fa178a841e58cb77bc2b04ba63fca
    https://github.com/scummvm/scummvm/commit/a16fef0c2b1fa178a841e58cb77bc2b04ba63fca
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-10-19T00:04:32+02:00

Commit Message:
DIRECTOR: DT: Avoid duplicate IDs when rendering Score in extended format

Changed paths:
    engines/director/debugger/dt-score.cpp


diff --git a/engines/director/debugger/dt-score.cpp b/engines/director/debugger/dt-score.cpp
index ab9425d6629..9ae27d8fd2e 100644
--- a/engines/director/debugger/dt-score.cpp
+++ b/engines/director/debugger/dt-score.cpp
@@ -247,7 +247,7 @@ static void displayScoreChannel(int ch, int mode, int modeSel, Window *window) {
 
 		int mode1 = mode;
 
-		ImGui::PushID((ch + 10 - mode) * 10000 + f);
+		ImGui::PushID((ch * 20 + mode) * 10000 + f);
 
 		// If the frame is not the start, then don't render any text
 		if (mode == kModeMember) {




More information about the Scummvm-git-logs mailing list