X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ffiledb.h;h=d6630aa867f2f4415129175808e9abec25c22dc1;hb=178d7f01b40cf8367cfe5b71219e6d20f60f92d4;hp=801b5014647a1a0a13f6e9c25b4ab7d922038db1;hpb=742efd9b7deca399ca92f1c548e97836d626c86a;p=virtualjaguar diff --git a/src/filedb.h b/src/filedb.h index 801b501..d6630aa 100644 --- a/src/filedb.h +++ b/src/filedb.h @@ -9,7 +9,7 @@ // 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 }; // Useful structs @@ -17,7 +17,7 @@ struct RomIdentifier { const uint32 crc32; const char name[128]; -// const char file[128]; +// const uint8 compatibility; const uint32 flags; };