mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-03 08:40:59 +00:00
COMMON: Added more global debug levels
This commit is contained in:
parent
b86688e717
commit
efb903204d
@ -34,6 +34,8 @@ bool gDebugChannelsOnly = false;
|
||||
const DebugChannelDef gDebugChannels[] = {
|
||||
{ kDebugLevelEventRec, "eventrec", "Event recorder debug level" },
|
||||
{ kDebugGlobalDetection, "detection", "debug messages for advancedDetector" },
|
||||
{ kDebugLevelGUI, "gui", "debug messages for GUI" },
|
||||
{ kDebugLevelMacGUI, "macgui", "debug messages for MacGUI" },
|
||||
DEBUG_CHANNEL_END
|
||||
};
|
||||
namespace Common {
|
||||
|
@ -162,7 +162,9 @@ extern bool gDebugChannelsOnly;
|
||||
/** Global constant for EventRecorder debug channel. */
|
||||
enum GlobalDebugLevels {
|
||||
kDebugGlobalDetection = 100000,
|
||||
kDebugLevelEventRec
|
||||
kDebugLevelEventRec,
|
||||
kDebugLevelGUI,
|
||||
kDebugLevelMacGUI,
|
||||
};
|
||||
|
||||
extern const DebugChannelDef gDebugChannels[];
|
||||
|
Loading…
x
Reference in New Issue
Block a user