diff --git a/BizHawk.Emulation.Common/Database/GameInfo.cs b/BizHawk.Emulation.Common/Database/GameInfo.cs index f6837cd0e7..8775f286ec 100644 --- a/BizHawk.Emulation.Common/Database/GameInfo.cs +++ b/BizHawk.Emulation.Common/Database/GameInfo.cs @@ -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; + } } }