C64 - Pass in extension to the core

This commit is contained in:
adelikat 2012-11-01 17:56:48 +00:00
parent cc4c0ed693
commit c0c3c36e87
3 changed files with 4 additions and 3 deletions

View File

@ -9,7 +9,7 @@ namespace BizHawk.Emulation.Computers.Commodore64
{
public partial class C64 : IEmulator
{
public C64(GameInfo game, byte[] rom)
public C64(GameInfo game, byte[] rom, string romextension)
{
videoProvider = new MyVideoProvider(this);
SetupMemoryDomains();

View File

@ -1646,7 +1646,7 @@ namespace BizHawk.MultiClient
nextEmulator = a78;
break;
case "C64":
C64 c64 = new C64(game, rom.RomData); //TODO: need to load in BIOSes?
C64 c64 = new C64(game, rom.RomData, rom.Extension); //TODO: need to load in BIOSes?
nextEmulator = c64;
break;
}

View File

@ -8,6 +8,7 @@ namespace BizHawk.MultiClient
public byte[] RomData;
public byte[] FileData;
public GameInfo GameInfo;
public string Extension;
private const int BankSize = 1024;
@ -22,7 +23,7 @@ namespace BizHawk.MultiClient
var stream = file.GetStream();
FileData = Util.ReadAllBytes(stream);
Extension = file.Extension;
// if we're offset exactly 512 bytes from a 1024-byte boundary,
// assume we have a header of that size. Otherwise, assume it's just all rom.
// Other 'recognized' header sizes may need to be added.