[Scummvm-git-logs] scummvm master -> 2f9c85a090a03c74781966597a317fdd3132ac30
grisenti
noreply at scummvm.org
Sun Jan 8 18:22:25 UTC 2023
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:
2f9c85a090 HPL1: add new debug channel
Commit: 2f9c85a090a03c74781966597a317fdd3132ac30
https://github.com/scummvm/scummvm/commit/2f9c85a090a03c74781966597a317fdd3132ac30
Author: grisenti (emanuele at grisenti.net)
Date: 2023-01-08T19:22:13+01:00
Commit Message:
HPL1: add new debug channel
Changed paths:
engines/hpl1/debug.h
engines/hpl1/detection.cpp
diff --git a/engines/hpl1/debug.h b/engines/hpl1/debug.h
index 2864847fbf5..d036035f124 100644
--- a/engines/hpl1/debug.h
+++ b/engines/hpl1/debug.h
@@ -36,7 +36,8 @@ enum DebugChannels {
kDebugRenderer = 1 << 4,
kDebugAudio = 1 << 5,
kDebugSaves = 1 << 6,
- kDebugTextures = 1 << 7
+ kDebugTextures = 1 << 7,
+ kDebugScripts = 1 << 8
};
enum DebugLevels {
diff --git a/engines/hpl1/detection.cpp b/engines/hpl1/detection.cpp
index 5806a1bc758..c1fff5cfaeb 100644
--- a/engines/hpl1/detection.cpp
+++ b/engines/hpl1/detection.cpp
@@ -39,6 +39,7 @@ const DebugChannelDef Hpl1MetaEngineDetection::debugFlagList[] = {
{ Hpl1::kDebugAudio, "Audio", "Audio debug channel"},
{ Hpl1::kDebugSaves, "Saves", "Channel for debugging game saving and loading"},
{ Hpl1::kDebugTextures, "Textures", "Texture debug channel"},
+ { Hpl1::kDebugScripts, "Scripts", "Scripts debug channel"},
DEBUG_CHANNEL_END
};
More information about the Scummvm-git-logs
mailing list