C64Hawk - reenable full border - #1341
This commit is contained in:
parent
0411be40fe
commit
6621827b8f
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue