From: curt Date: Mon, 16 Nov 1998 13:57:04 +0000 (+0000) Subject: Added an FG_SERIAL type to the FG_LOG macro. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a878570a8d52fa71e38beeb8727922d481ff4b83;p=flightgear.git Added an FG_SERIAL type to the FG_LOG macro. --- diff --git a/Debug/debug_types.h b/Debug/debug_types.h index 65e6fe912..0d9c209a6 100644 --- a/Debug/debug_types.h +++ b/Debug/debug_types.h @@ -16,7 +16,8 @@ typedef enum { FG_EVENT = 0x00000200, FG_AIRCRAFT = 0x00000400, FG_AUTOPILOT = 0x00000800, - FG_UNDEFD = 0x00001000, // For range checking + FG_SERIAL = 0x00001000, + FG_UNDEFD = 0x00002000, // For range checking FG_ALL = 0xFFFFFFFF } fgDebugClass;