mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-27 20:28:27 +00:00
INSANE debug output now can be turned ot in debug console
svn-id: r12926
This commit is contained in:
parent
1f2ab0145b
commit
cab9b2f34a
@ -128,7 +128,8 @@ enum {
|
||||
DEBUG_RESOURCE = 1 << 5, // Track resource loading / allocation
|
||||
DEBUG_IMUSE = 1 << 6, // Track iMUSE events
|
||||
DEBUG_SOUND = 1 << 7, // General Sound Debug
|
||||
DEBUG_ACTORS = 1 << 8 // General Actor Debug
|
||||
DEBUG_ACTORS = 1 << 8, // General Actor Debug
|
||||
DEBUG_INSANE = 1 << 9 // Track INSANE
|
||||
};
|
||||
|
||||
|
||||
@ -139,7 +140,8 @@ static const dbgChannelDesc debugChannels[] = {
|
||||
{"IMUSE", "Track iMUSE events", DEBUG_IMUSE},
|
||||
{"RESOURCE", "Track resource loading/management", DEBUG_RESOURCE},
|
||||
{"VARS", "Track variable changes", DEBUG_VARS},
|
||||
{"ACTORS", "Actor-related debug", DEBUG_ACTORS}
|
||||
{"ACTORS", "Actor-related debug", DEBUG_ACTORS},
|
||||
{"INSANE", "Track INSANE", DEBUG_INSANE}
|
||||
};
|
||||
|
||||
struct MemBlkHeader {
|
||||
|
Loading…
Reference in New Issue
Block a user