From ca50fe386def75e4995b7db42fb037840c32dadb Mon Sep 17 00:00:00 2001 From: ehofman Date: Sun, 24 Oct 2004 09:29:56 +0000 Subject: [PATCH] Roy Vegard Ovesen: I've added two new debug log types for the instrumentation and systems. They used to use the autopilot debug log, because I couldn't figure out how to make new log types. Well, now I have figured it out. ;-) --- simgear/debug/debug_types.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/simgear/debug/debug_types.h b/simgear/debug/debug_types.h index 9ca20c2d..e0013e2b 100644 --- a/simgear/debug/debug_types.h +++ b/simgear/debug/debug_types.h @@ -25,7 +25,9 @@ typedef enum { SG_NETWORK = 0x00004000, SG_ATC = 0x00008000, SG_NASAL = 0x00010000, - SG_UNDEFD = 0x00020000, // For range checking + SG_INSTR = 0x00020000, + SG_SYSTEMS = 0x00040000, + SG_UNDEFD = 0x00080000, // For range checking SG_ALL = 0xFFFFFFFF } sgDebugClass; -- 2.39.5