From 6621827b8f4fe7fd2e44a047d6d5e540d7e18f27 Mon Sep 17 00:00:00 2001 From: Asnivor Date: Thu, 6 Dec 2018 13:42:00 +0000 Subject: [PATCH] C64Hawk - reenable full border - #1341 --- .../Computers/Commodore64/C64.ISettable.cs | 2 +- BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.ISettable.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.ISettable.cs index d30cbfeb86..7a6b99dcb3 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/C64.ISettable.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/C64.ISettable.cs @@ -109,7 +109,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64 public enum BorderType { - None, SmallProportional, SmallFixed, Normal + None, SmallProportional, SmallFixed, Normal, Full } public enum SidType diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs index 95dba3c0bc..621a0ea59b 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs @@ -97,7 +97,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS switch (borderType) { - /* + case C64.BorderType.Full: newHblankStart = -1; newHblankEnd = -1; @@ -105,8 +105,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS newVblankStart = -1; newVblankEnd = -1; _vblank = false; - break; - */ + break; case C64.BorderType.Normal: newHblankStart = hblankStart; newHblankEnd = hblankEnd;