Update VDC.cs
Fix initial size in PCE. Still a little off (4 pixels ) because it autoresizes and it really should probably be completely rewritten, but at least it's much less jarring now.
This commit is contained in:
parent
1dae91e6a8
commit
a6197a643b
|
@ -97,7 +97,8 @@ namespace BizHawk.Emulation.Cores.PCEngine
|
|||
RenderBackgroundScanline = RenderBackgroundScanlineUnsafe;
|
||||
|
||||
Registers[HSR] = 0x00FF;
|
||||
Registers[HDR] = 0x00FF;
|
||||
Registers[HDR] = 0x001F;
|
||||
Registers[VDW] = 0x01FF;
|
||||
Registers[VPR] = 0xFFFF;
|
||||
Registers[VCR] = 0xFFFF;
|
||||
ReadBuffer = 0xFFFF;
|
||||
|
|
Loading…
Reference in New Issue