From 7017168ee322e301dd5ccfe7256d386a8d3f22b4 Mon Sep 17 00:00:00 2001 From: goyuken Date: Thu, 5 Feb 2015 23:09:37 +0000 Subject: [PATCH] coleco: clean up corefileprovider usage --- BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs index b7ec897845..646c382cb8 100644 --- a/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs +++ b/BizHawk.Emulation.Cores/Consoles/Coleco/ColecoVision.cs @@ -53,8 +53,7 @@ namespace BizHawk.Emulation.Cores.ColecoVision PSG = new SN76489(); // TODO: hack to allow bios-less operation would be nice, no idea if its feasible - string biosPath = CoreComm.CoreFileProvider.GetFirmwarePath("Coleco", "Bios", true, "Coleco BIOS file is required."); - BiosRom = File.ReadAllBytes(biosPath); + byte[] BiosRom = CoreComm.CoreFileProvider.GetFirmware("Coleco", "Bios", true, "Coleco BIOS file is required."); // gamedb can overwrite the syncsettings; this is ok if (game["NoSkip"])