]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/filedb.cpp
Various changes to improve code readability, added mouse hiding.
[virtualjaguar] / src / filedb.cpp
index fe499f993671d2eeb2799b09a1e8ed1a97005554..ee128468aff8c14ead41c69e653503064af71ace 100644 (file)
 #if 0
 struct RomIdentifier
 {
-       const uint32 crc32;
+       const uint32_t crc32;
        const char name[128];
-//     const uint8 compatibility;
-       const uint32 flags;
+//     const uint8_t compatibility;
+       const uint32_t flags;
 };
 
 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, FF_VERIFIED=128 };
@@ -132,5 +132,6 @@ RomIdentifier romList[] = {
 // is this really a BIOS???
 // No, it's really a cart, complete with RSA header. So need to fix so it can load.
        { 0xFDF37F47, "Memory Track Cartridge (World)", FF_ROM | FF_VERIFIED },
+       { 0xF7756A03, "Tripper Getem (World)", FF_ROM | FF_VERIFIED },
        { 0xFFFFFFFF, "***END***", 0 }
 };