]> git.mxchange.org Git - flightgear.git/blobdiff - Debug/fg_debug.h
Added an entry for AUTOPILOT.
[flightgear.git] / Debug / fg_debug.h
index 51e75b14de05163ab38b83206246274cbc786372..b67119fd9482d79bc9a7f4a498918b32f49914ce 100644 (file)
@@ -38,20 +38,21 @@ extern "C" {
 /* NB: To add a dbg_class, add it here, and add it to the structure in
    fg_debug.c */
 typedef enum {
-    FG_NONE    = 0x00000000,
-
-    FG_TERRAIN = 0x00000001,
-    FG_ASTRO   = 0x00000002,
-    FG_FLIGHT  = 0x00000004,
-    FG_INPUT   = 0x00000008,
-    FG_GL      = 0x00000010,
-    FG_VIEW    = 0x00000020,
-    FG_COCKPIT = 0x00000040,
-    FG_GENERAL = 0x00000080,
-    FG_MATH    = 0x00000100,
-    FG_EVENT   = 0x00000200,
-    FG_AIRCRAFT= 0x00000400,
-    FG_UNDEFD  = 0x00001000, // For range checking
+    FG_NONE      = 0x00000000,
+
+    FG_TERRAIN   = 0x00000001,
+    FG_ASTRO     = 0x00000002,
+    FG_FLIGHT    = 0x00000004,
+    FG_INPUT     = 0x00000008,
+    FG_GL        = 0x00000010,
+    FG_VIEW      = 0x00000020,
+    FG_COCKPIT   = 0x00000040,
+    FG_GENERAL   = 0x00000080,
+    FG_MATH      = 0x00000100,
+    FG_EVENT     = 0x00000200,
+    FG_AIRCRAFT  = 0x00000400,
+    FG_AUTOPILOT = 0x00000800,
+    FG_UNDEFD    = 0x00001000, // For range checking
 
     FG_ALL     = 0xFFFFFFFF
 } fgDebugClass;