1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-11 08:30:55 +00:00

Fixed vertical retrace sync.

This commit is contained in:
Thomas Harte 2016-01-09 21:54:31 -05:00
parent 3d6f20b7b9
commit 07a041d788

View File

@ -193,9 +193,8 @@ inline void Machine::update_display()
{ {
for(int c = 0; c < 3; c++) for(int c = 0; c < 3; c++)
{ {
_crt->output_sync(9 * crt_cycles_multiplier); _crt->output_sync(119 * crt_cycles_multiplier);
_crt->output_blank(9 * crt_cycles_multiplier); _crt->output_blank(9 * crt_cycles_multiplier);
_crt->output_sync(110 * crt_cycles_multiplier);
} }
_outputPosition = end_of_hsync; _outputPosition = end_of_hsync;
} }