[Scummvm-git-logs] scummvm master -> 7be75cbe482f7d0c64cc55308a03402f21e4231d

mgerhardy noreply at scummvm.org
Sat Jul 4 07:55:16 UTC 2026


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:
7be75cbe48 MACS2: removed own imgui debug channel - use the global registered one


Commit: 7be75cbe482f7d0c64cc55308a03402f21e4231d
    https://github.com/scummvm/scummvm/commit/7be75cbe482f7d0c64cc55308a03402f21e4231d
Author: Martin Gerhardy (martin.gerhardy at gmail.com)
Date: 2026-07-04T09:54:56+02:00

Commit Message:
MACS2: removed own imgui debug channel - use the global registered one

Changed paths:
    engines/macs2/detection.cpp
    engines/macs2/detection.h


diff --git a/engines/macs2/detection.cpp b/engines/macs2/detection.cpp
index e4fe5b27974..f306d4e0974 100644
--- a/engines/macs2/detection.cpp
+++ b/engines/macs2/detection.cpp
@@ -30,7 +30,6 @@ const DebugChannelDef Macs2MetaEngineDetection::debugFlagList[] = {
 	{Macs2::kDebugInput, "Input", "Input debug level"},
 	{Macs2::kDebugScan, "Scan", "Scan for unrecognised games"},
 	{Macs2::kDebugScript, "Script", "Enable debug script dump"},
-	{Macs2::kDebugImGui, "imgui", "Show ImGui debug window (if available)"},
 	DEBUG_CHANNEL_END};
 
 Macs2MetaEngineDetection::Macs2MetaEngineDetection() : AdvancedMetaEngineDetection(Macs2::gameDescriptions,
diff --git a/engines/macs2/detection.h b/engines/macs2/detection.h
index de4bf132079..cf807d965a3 100644
--- a/engines/macs2/detection.h
+++ b/engines/macs2/detection.h
@@ -32,8 +32,7 @@ enum Macs2DebugChannels {
 	kDebugScan = 1 << 2,
 	kDebugFilePath = 1 << 3,
 	kDebugInput = 1 << 4,
-	kDebugImGui = 1 << 5,
-	kDebugScript = 1 << 6,
+	kDebugScript = 1 << 5,
 };
 
 enum Macs2Action {




More information about the Scummvm-git-logs mailing list