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

sluicebox 22204938+sluicebox at users.noreply.github.com
Sat May 22 10:01:56 UTC 2021


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

Summary:
41226396b2 SCI: Add missing debug channel terminator
55344bf0bc SCUMM: Add missing debug channel terminator
cbe971e551 LASTEXPRESS: Add missing debug channel terminator


Commit: 41226396b272a335a7b85c83ead9d9dc35235d19
    https://github.com/scummvm/scummvm/commit/41226396b272a335a7b85c83ead9d9dc35235d19
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2021-05-22T03:55:37-06:00

Commit Message:
SCI: Add missing debug channel terminator

Changed paths:
    engines/sci/detection.cpp


diff --git a/engines/sci/detection.cpp b/engines/sci/detection.cpp
index 157909aa89..5a09727708 100644
--- a/engines/sci/detection.cpp
+++ b/engines/sci/detection.cpp
@@ -62,6 +62,7 @@ static const DebugChannelDef debugFlagList[] = {
 	{Sci::kDebugLevelResMan, "ResMan", "Resource manager debugging"},
 	{Sci::kDebugLevelOnStartup, "OnStartup", "Enter debugger at start of game"},
 	{Sci::kDebugLevelDebugMode, "DebugMode", "Enable game debug mode at start of game"},
+	DEBUG_CHANNEL_END
 };
 
 namespace Sci {


Commit: 55344bf0bc8ecda939200b1b0f811f95b5c73873
    https://github.com/scummvm/scummvm/commit/55344bf0bc8ecda939200b1b0f811f95b5c73873
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2021-05-22T03:56:02-06:00

Commit Message:
SCUMM: Add missing debug channel terminator

Changed paths:
    engines/scumm/detection.cpp


diff --git a/engines/scumm/detection.cpp b/engines/scumm/detection.cpp
index d04c837f0b..9f0f79d4c9 100644
--- a/engines/scumm/detection.cpp
+++ b/engines/scumm/detection.cpp
@@ -62,7 +62,8 @@ static const DebugChannelDef debugFlagList[] = {
 		{Scumm::DEBUG_SOUND, "SOUND", "Sound related debug"},
 		{Scumm::DEBUG_INSANE, "INSANE", "Track INSANE"},
 		{Scumm::DEBUG_SMUSH, "SMUSH", "Track SMUSH"},
-		{Scumm::DEBUG_MOONBASE_AI, "MOONBASEAI", "Track Moonbase AI"}
+		{Scumm::DEBUG_MOONBASE_AI, "MOONBASEAI", "Track Moonbase AI"},
+		DEBUG_CHANNEL_END
 };
 
 using namespace Scumm;


Commit: cbe971e5517f0f33e68d5ccb57f9bc1acd401d2d
    https://github.com/scummvm/scummvm/commit/cbe971e5517f0f33e68d5ccb57f9bc1acd401d2d
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2021-05-22T04:01:17-06:00

Commit Message:
LASTEXPRESS: Add missing debug channel terminator

Changed paths:
    engines/lastexpress/detection.cpp


diff --git a/engines/lastexpress/detection.cpp b/engines/lastexpress/detection.cpp
index bb0121acff..694334e092 100644
--- a/engines/lastexpress/detection.cpp
+++ b/engines/lastexpress/detection.cpp
@@ -41,6 +41,7 @@ static const DebugChannelDef debugFlagList[] = {
 	{LastExpress::kLastExpressDebugLogic, "Logic", "Debug logic"},
 	{LastExpress::kLastExpressDebugScenes, "Scenes", "Debug scenes & hotspots"},
 	{LastExpress::kLastExpressDebugUnknown, "Unknown", "Debug unknown data"},
+	DEBUG_CHANNEL_END
 };
 
 static const ADGameDescription gameDescriptions[] = {




More information about the Scummvm-git-logs mailing list