From 71d68e4bea413c75d54b8b02ae83300d2784fe0d Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Mon, 3 Feb 2020 17:32:32 -0500 Subject: [PATCH] MSX: use JP bios for now --- BizHawk.Emulation.Cores/Computers/MSX/MSX.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs b/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs index bae8b49150..16e08d042e 100644 --- a/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs +++ b/BizHawk.Emulation.Cores/Computers/MSX/MSX.cs @@ -58,9 +58,9 @@ namespace BizHawk.Emulation.Cores.Computers.MSX } } - Bios = comm.CoreFileProvider.GetFirmware("MSX", "bios_test", true, "BIOS Not Found, Cannot Load"); + //Bios = comm.CoreFileProvider.GetFirmware("MSX", "bios_test", true, "BIOS Not Found, Cannot Load"); //Basic = comm.CoreFileProvider.GetFirmware("MSX", "basic_test", true, "BIOS Not Found, Cannot Load"); - //Bios = comm.CoreFileProvider.GetFirmware("MSX", "bios_jp", true, "BIOS Not Found, Cannot Load"); + Bios = comm.CoreFileProvider.GetFirmware("MSX", "bios_jp", true, "BIOS Not Found, Cannot Load"); Basic = new byte[0x4000];