]> Shamusworld >> Repos - virtualjaguar/commitdiff
Minor corrections to the file DB.
authorShamus Hammons <jlhamm@acm.org>
Tue, 12 Jul 2011 19:16:12 +0000 (19:16 +0000)
committerShamus Hammons <jlhamm@acm.org>
Tue, 12 Jul 2011 19:16:12 +0000 (19:16 +0000)
src/filedb.cpp
src/gui/mainwin.cpp

index 0d835c99496f530552860b68646acab459a261cf..ae97a8d5198a85fb9481a2c06dc60b90aec25252 100644 (file)
@@ -89,7 +89,7 @@ RomIdentifier romList[] = {
        { 0x97EB4651, "I-War (World)", FF_ROM | FF_VERIFIED },
        { 0xA0A25A67, "Missile Command VR", FF_ALPINE },
        { 0xA27823D8, "Ultra Vortek (World) (v0.94) (Beta)", FF_ROM },
-       { 0xA7E01FEF, "Mad Bodies (2008)", FF_ROM | FF_NON_WORKING },
+       { 0xA7E01FEF, "Mad Bodies (2008)", FF_ROM | FF_REQ_BIOS },
        { 0xA9F8A00E, "Rayman (World)", FF_ROM | FF_VERIFIED },
        { 0xAEA9D831, "Barkley Shut Up & Jam", FF_ROM | FF_VERIFIED },
        { 0xB14C4753, "Fight for Life (World)", FF_ROM | FF_VERIFIED },
@@ -98,7 +98,7 @@ RomIdentifier romList[] = {
        { 0xBCB1A4BF, "Brutal Sports Football (World)", FF_ROM | FF_VERIFIED },
        { 0xBD18D606, "Space War 2000 (World) (alt)", FF_ALPINE },
        { 0xBDA405C6, "Cannon Fodder (World)", FF_ROM | FF_VERIFIED },
-       { 0xBDE67498, "Cybermorph (World) (Rev 1)", FF_ROM | FF_VERIFIED },
+       { 0xBDE67498, "Cybermorph (World) (Rev 1)", FF_ROM | FF_VERIFIED | FF_REQ_DSP },
        { 0xC2898F6E, "Barkley Shut Up & Jam (alt)", FF_ALPINE },
        { 0xC36E935E, "Beebris (World)", FF_ALPINE | FF_VERIFIED },
        { 0xC5562581, "Zoop! (World)", FF_ROM | FF_VERIFIED },
@@ -119,7 +119,7 @@ RomIdentifier romList[] = {
        { 0xE91BD644, "Wolfenstein 3D (World)", FF_ROM | FF_VERIFIED },
        { 0xEA9B3FA7, "Phase Zero", FF_ROM },
        { 0xEC22F572, "SuperCross 3D (World)", FF_ROM | FF_VERIFIED },
-       { 0xECF854E7, "Cybermorph (World) (Rev 2)", FF_ROM },
+       { 0xECF854E7, "Cybermorph (World) (Rev 2)", FF_ROM | FF_REQ_DSP },
        { 0xEEE8D61D, "Club Drive (World)", FF_ROM | FF_VERIFIED },
        { 0xF4ACBB04, "Tiny Toon Adventures (World)", FF_ROM | FF_VERIFIED },
        { 0xFA7775AE, "Checkered Flag (World)", FF_ROM | FF_VERIFIED },
index 3584fb9618fdee1ced7be1874d3696b3aea02a2c..71872b8cec0989106a92ec08adc0eac709b27fa2 100644 (file)
@@ -662,8 +662,8 @@ void MainWin::ReadSettings(void)
        strcpy(vjs.EEPROMPath, settings.value("EEPROMs", "./eeproms/").toString().toAscii().data());
        strcpy(vjs.ROMPath, settings.value("ROMs", "./software/").toString().toAscii().data());
 WriteLog("MainWin: Paths\n");
-WriteLog("    jagBootPath = \"%s\"\n", vjs.jagBootPath);
-WriteLog("    CDBootPath  = \"%s\"\n", vjs.CDBootPath);
+//WriteLog("    jagBootPath = \"%s\"\n", vjs.jagBootPath);
+//WriteLog("    CDBootPath  = \"%s\"\n", vjs.CDBootPath);
 WriteLog("    EEPROMPath  = \"%s\"\n", vjs.EEPROMPath);
 WriteLog("    ROMPath     = \"%s\"\n", vjs.ROMPath);