[Scummvm-git-logs] scummvm master -> 6e3f4afc40508c07e8f43a2e1330d0d8b1ee1257

digitall noreply at scummvm.org
Wed May 22 00:38:53 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
6e3f4afc40 DIRECTOR: Fix Enumeration Value Type Mismatch GCC Compiler Warning


Commit: 6e3f4afc40508c07e8f43a2e1330d0d8b1ee1257
    https://github.com/scummvm/scummvm/commit/6e3f4afc40508c07e8f43a2e1330d0d8b1ee1257
Author: D G Turner (digitall at scummvm.org)
Date: 2024-05-22T01:37:04+01:00

Commit Message:
DIRECTOR: Fix Enumeration Value Type Mismatch GCC Compiler Warning

This should be checked to ensure that this functions as intended.

Changed paths:
    engines/director/debugtools.cpp


diff --git a/engines/director/debugtools.cpp b/engines/director/debugtools.cpp
index f35966977e7..65680f1af86 100644
--- a/engines/director/debugtools.cpp
+++ b/engines/director/debugtools.cpp
@@ -1634,7 +1634,7 @@ static void showBreakpointList() {
 		auto &bps = g_lingo->getBreakpoints();
 		if (ImGui::BeginTable("BreakpointsTable", 5, ImGuiTableFlags_SizingFixedFit)) {
 			for (uint i = 0; i < 5; i++)
-				ImGui::TableSetupColumn(NULL, i == 2 ? ImGuiTableColumnFlags_WidthStretch : ImGuiTableFlags_SizingFixedFit);
+				ImGui::TableSetupColumn(NULL, i == 2 ? ImGuiTableColumnFlags_WidthStretch : ImGuiTableColumnFlags_NoHeaderWidth);
 
 			for (uint i = 0; i < bps.size(); i++) {
 				if(bps[i].type != kBreakpointFunction) continue;




More information about the Scummvm-git-logs mailing list