The Felony menu file format:


 Offset        Size                       Description
-----------------------------------------------------------------------
   0             4                 Header, always FELM
   4             1                 Number of elements in the menu.
   5             1                 Control info byte.
                                   01   :  Lightbars only
                                   02   :  Hotkeys only
                                   03   :  Both
                                   (bits 7-3 could be used in later versions)
   6             ?                 First menu entry in ASCIIZ format.
   ?             1                 X coord
   ?             1                 Y coord
   ?             1                 Hotkey

   (repeat for all menu entries)

[optional]
   EOF-4         4                 32 bit CRC.  If the menu reader finishes
                                   reading the file, and is not at EOF yet,
                                   it will assume that the next 4 bytes are
                                   a 32 bit checksum.  If the CRC isn't cor-
                                   rect, it will return an error.
                                   You can specify whether or not you want the
                                   CRC from the Create or Edit option in the
                                   main menu (well, not yet :) ).


