From e82bae007ae4bf0e3af58c9a1cdbe7e6eebabf2f Mon Sep 17 00:00:00 2001 From: brandman211 Date: Sun, 15 Jul 2012 09:13:54 +0000 Subject: [PATCH] -Mapped .ROM to Intellivision. --If a future system uses this extension, the condition: Rom[0] == 0xA8 && Rom[1] == (0xFF ^ Rom[2]) ...can verify if the file is in fact an IntelliCart, though I doubt this is a permanent solution to the more underlying problem. --- BizHawk.Emulation/Database/Database.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BizHawk.Emulation/Database/Database.cs b/BizHawk.Emulation/Database/Database.cs index 303d815293..b5e2818f8b 100644 --- a/BizHawk.Emulation/Database/Database.cs +++ b/BizHawk.Emulation/Database/Database.cs @@ -139,6 +139,7 @@ namespace BizHawk case ".NES": Game.System = "NES"; break; case ".A26": Game.System = "A26"; break; case ".COL": Game.System = "COLV"; break; + case ".ROM": case ".INT": Game.System = "INTV"; break; }