C64: Fix ROM load order.

This commit is contained in:
Anthony Konzel 2016-03-04 17:29:47 -06:00
parent b0e4e18ebc
commit 57676608d0
1 changed files with 2 additions and 2 deletions

View File

@ -279,8 +279,8 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64
private void InitRoms(DiskDriveType diskDriveType)
{
_board.BasicRom.Flash(GetFirmware(0x2000, "Basic"));
_board.KernalRom.Flash(GetFirmware(0x1000, "Chargen"));
_board.CharRom.Flash(GetFirmware(0x2000, "Kernal"));
_board.KernalRom.Flash(GetFirmware(0x2000, "Kernal"));
_board.CharRom.Flash(GetFirmware(0x1000, "Chargen"));
switch (diskDriveType)
{