MAME does mark bad dumps, but it only keeps their info if good dump is not known yet. once a good dump appears, its info replaces the bad one.
so simply sticking to newest rom sets is the safest, otherwise there's little user control, because there's no global list of all known dumps with indications which of them are bad and what to use instead.
This commit is contained in:
parent
2010f5e15c
commit
e065263ff2
|
@ -4,6 +4,7 @@ using System.ComponentModel;
|
|||
using System.Linq;
|
||||
|
||||
using BizHawk.Common;
|
||||
using BizHawk.Common.StringExtensions;
|
||||
using BizHawk.Emulation.Common;
|
||||
|
||||
namespace BizHawk.Emulation.Cores.Arcades.MAME
|
||||
|
@ -164,6 +165,12 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
|
|||
}
|
||||
else
|
||||
{
|
||||
if (hashdata.Contains("^"))
|
||||
{
|
||||
hashdata = hashdata.RemoveSuffix("^");
|
||||
name = name + " (BAD DUMP)";
|
||||
}
|
||||
|
||||
hashdata = hashdata.Replace("R", "CRC:").Replace("S", " SHA:");
|
||||
_romHashes.Add(name, hashdata);
|
||||
}
|
||||
|
|
|
@ -99,7 +99,19 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
|
|||
|
||||
lp.Game.Name = _gameFullName;
|
||||
lp.Game.Hash = SHA1Checksum.ComputeDigestHex(Encoding.ASCII.GetBytes(hashes));
|
||||
lp.Game.Status = _romHashes.Values.Any(static s => s is "NO GOOD DUMP KNOWN") ? RomStatus.Unknown : RomStatus.GoodDump;
|
||||
|
||||
if (_romHashes.Values.Any(static s => s is "NO GOOD DUMP KNOWN"))
|
||||
{
|
||||
lp.Game.Status = RomStatus.Unknown;
|
||||
}
|
||||
else if (_romHashes.Keys.Any(static s => s.Contains("BAD DUMP")))
|
||||
{
|
||||
lp.Game.Status = RomStatus.BadDump;
|
||||
}
|
||||
else
|
||||
{
|
||||
lp.Game.Status = RomStatus.GoodDump;
|
||||
}
|
||||
|
||||
_core.mame_info_get_warnings_string(_infoCallback);
|
||||
_infoCallback = null;
|
||||
|
|
Loading…
Reference in New Issue