INSANE debug output now can be turned ot in debug console

svn-id: r12926
This commit is contained in:
Eugene Sandulenko 2004-02-18 05:20:47 +00:00
parent 1f2ab0145b
commit cab9b2f34a

View File

@ -128,7 +128,8 @@ enum {
DEBUG_RESOURCE = 1 << 5, // Track resource loading / allocation DEBUG_RESOURCE = 1 << 5, // Track resource loading / allocation
DEBUG_IMUSE = 1 << 6, // Track iMUSE events DEBUG_IMUSE = 1 << 6, // Track iMUSE events
DEBUG_SOUND = 1 << 7, // General Sound Debug 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}, {"IMUSE", "Track iMUSE events", DEBUG_IMUSE},
{"RESOURCE", "Track resource loading/management", DEBUG_RESOURCE}, {"RESOURCE", "Track resource loading/management", DEBUG_RESOURCE},
{"VARS", "Track variable changes", DEBUG_VARS}, {"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 { struct MemBlkHeader {