]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/filedb.h
Removed some cruft and nonstandard int/uint types, added M series BIOS.
[virtualjaguar] / src / filedb.h
index 685f31ff9b2eeaa126f94624550b1295f164a756..f28f5e7c25c6f57dfea3573cf7fcb8051dc37954 100644 (file)
@@ -5,20 +5,20 @@
 #ifndef __FILEDB_H__
 #define __FILEDB_H__
 
-#include "types.h"
+#include <stdint.h>
 
 // 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...