From d7a56eab3bc4c95958fc00b15d8cadcddfac8b3a Mon Sep 17 00:00:00 2001 From: zeromus Date: Tue, 14 Jul 2015 18:52:30 -0500 Subject: [PATCH] dont fail loading not-in-gamedb psx games --- BizHawk.Client.Common/RomLoader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/RomLoader.cs b/BizHawk.Client.Common/RomLoader.cs index 25293b4e39..9a71839d03 100644 --- a/BizHawk.Client.Common/RomLoader.cs +++ b/BizHawk.Client.Common/RomLoader.cs @@ -270,7 +270,7 @@ namespace BizHawk.Client.Common { string discHash = new DiscHasher(disc).Calculate_PSX_BizIDHash().ToString("X8"); game = Database.CheckDatabase(discHash); - if (game.IsRomStatusBad()) + if (game.IsRomStatusBad() || game.Status == RomStatus.NotInDatabase) sw.WriteLine("Disc could not be identified as known-good. Look for a better rip."); else { @@ -366,7 +366,7 @@ namespace BizHawk.Client.Common break; case "PSX": nextEmulator = new Octoshock(nextComm, new List(new[]{disc}), new List(new[]{Path.GetFileNameWithoutExtension(path)}), null, GetCoreSettings(), GetCoreSyncSettings()); - if (game.IsRomStatusBad()) + if (game.IsRomStatusBad() || game.Status == RomStatus.NotInDatabase) nextEmulator.CoreComm.RomStatusDetails = "Disc could not be identified as known-good. Look for a better rip."; else {