From 57676608d0ed8b8b1a1292c1ae5f084f8296a9d2 Mon Sep 17 00:00:00 2001 From: Anthony Konzel Date: Fri, 4 Mar 2016 17:29:47 -0600 Subject: [PATCH] C64: Fix ROM load order. --- BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs index 5f98b51a0a..5b80726e40 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.cs @@ -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) {