C64Hawk - reenable full border - #1341

This commit is contained in:
Asnivor 2018-12-06 13:42:00 +00:00
parent 0411be40fe
commit 6621827b8f
2 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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;