From f45798faf07f635465631c866493055f11088888 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 7 Nov 2019 22:53:26 -0500 Subject: [PATCH] Corrects initial safe value of line_length_. --- Machines/AtariST/Video.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/AtariST/Video.hpp b/Machines/AtariST/Video.hpp index 4dbaef575..bf5bfbf37 100644 --- a/Machines/AtariST/Video.hpp +++ b/Machines/AtariST/Video.hpp @@ -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];