Nitpick
This commit is contained in:
parent
250d3b6c49
commit
5cc1c234cd
|
@ -8,11 +8,6 @@ namespace BizHawk.Emulation.Common
|
|||
{
|
||||
public class GameInfo
|
||||
{
|
||||
public bool IsRomStatusBad()
|
||||
{
|
||||
return Status == RomStatus.BadDump || Status == RomStatus.Overdump;
|
||||
}
|
||||
|
||||
public string Name { get; set; }
|
||||
public string System { get; set; }
|
||||
public string Hash { get; set; }
|
||||
|
@ -179,5 +174,10 @@ namespace BizHawk.Emulation.Common
|
|||
{
|
||||
return game == null || game.System == "NULL";
|
||||
}
|
||||
|
||||
public static bool IsRomStatusBad(this GameInfo game)
|
||||
{
|
||||
return game.Status == RomStatus.BadDump || game.Status == RomStatus.Overdump;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue