X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ffiledb.h;h=f28f5e7c25c6f57dfea3573cf7fcb8051dc37954;hb=b4975cbd28c54b5a8f5d7a119375fe05b46f19a1;hp=685f31ff9b2eeaa126f94624550b1295f164a756;hpb=8cecfa4150ad7bc9d2a95f9753e2666456f98243;p=virtualjaguar diff --git a/src/filedb.h b/src/filedb.h index 685f31f..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...