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
|
public enum BorderType
|
||||||
{
|
{
|
||||||
None, SmallProportional, SmallFixed, Normal
|
None, SmallProportional, SmallFixed, Normal, Full
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum SidType
|
public enum SidType
|
||||||
|
|
|
@ -97,7 +97,7 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS
|
||||||
|
|
||||||
switch (borderType)
|
switch (borderType)
|
||||||
{
|
{
|
||||||
/*
|
|
||||||
case C64.BorderType.Full:
|
case C64.BorderType.Full:
|
||||||
newHblankStart = -1;
|
newHblankStart = -1;
|
||||||
newHblankEnd = -1;
|
newHblankEnd = -1;
|
||||||
|
@ -106,7 +106,6 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS
|
||||||
newVblankEnd = -1;
|
newVblankEnd = -1;
|
||||||
_vblank = false;
|
_vblank = false;
|
||||||
break;
|
break;
|
||||||
*/
|
|
||||||
case C64.BorderType.Normal:
|
case C64.BorderType.Normal:
|
||||||
newHblankStart = hblankStart;
|
newHblankStart = hblankStart;
|
||||||
newHblankEnd = hblankEnd;
|
newHblankEnd = hblankEnd;
|
||||||
|
|
Loading…
Reference in New Issue