On Sun, 12 Mar 1995 17:13:55 -0500 (EST) you said:
>
> In some of the .mob, .obj, .wld, etc... they use letters instead
>of numbers for the flags. Is there any documentation for what the
>letters mean? If so where? I can't seem to find any.
>
>
Check out structs.h, as a reference the ascii flags are con
verted to a bit shifted binary number, but in the code we see it as
(1 << 0) and so on as #define's, here's a rough guide that can help
you figure out the rest.
(1 << 0) == A
(1 << 1) == B
(1 << 2) == C
and so on up to
(1 << 26) == Z
-Curtiss
This archive was generated by hypermail 2b30 : 12/07/00 PST