X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ffiledb.h;h=f28f5e7c25c6f57dfea3573cf7fcb8051dc37954;hb=725caa0f8bb826a73edef366906ccb41a3197819;hp=801b5014647a1a0a13f6e9c25b4ab7d922038db1;hpb=742efd9b7deca399ca92f1c548e97836d626c86a;p=virtualjaguar diff --git a/src/filedb.h b/src/filedb.h index 801b501..f28f5e7 100644 --- a/src/filedb.h +++ b/src/filedb.h @@ -5,20 +5,20 @@ #ifndef __FILEDB_H__ #define __FILEDB_H__ -#include "types.h" +#include // Useful enumerations -enum FileFlags { FF_ROM=1, FF_ALPINE=2, FF_BIOS=4, FF_REQ_DSP=8, FF_REQ_BIOS=16, FF_NON_WORKING=32, FF_BAD_DUMP=64 }; +enum FileFlags { FF_ROM=0x01, FF_ALPINE=0x02, FF_BIOS=0x04, FF_REQ_DSP=0x08, FF_REQ_BIOS=0x10, FF_NON_WORKING=0x20, FF_BAD_DUMP=0x40, FF_VERIFIED=0x80, FF_STARS_1=0x00, FF_STARS_2=0x100, FF_STARS_3=0x200, FF_STARS_4=0x300, FF_STARS_5=0x400 }; // Useful structs struct RomIdentifier { - const uint32 crc32; + const uint32_t crc32; const char name[128]; -// const char file[128]; - const uint32 flags; +// const uint8_t compatibility; + const uint32_t flags; }; // So other stuff can pull this in...