1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Corrects initial safe value of line_length_.

This commit is contained in:
Thomas Harte 2019-11-07 22:53:26 -05:00
parent 7c66d7a13c
commit f45798faf0

View File

@ -75,7 +75,7 @@ class Video {
bool blank = false;
bool sync = false;
} horizontal_, vertical_;
int line_length_ = 512;
int line_length_ = 1024;
int data_latch_position_ = 0;
uint16_t data_latch_[4];