From 0d7172459846a0db36b9fcf8593bdbdd1137e5c9 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 9 Oct 2024 11:45:32 -0400 Subject: [PATCH] Eliminate extra-scanline flag. --- Components/6845/CRTC6845.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Components/6845/CRTC6845.hpp b/Components/6845/CRTC6845.hpp index 93dca56cd..c85022800 100644 --- a/Components/6845/CRTC6845.hpp +++ b/Components/6845/CRTC6845.hpp @@ -212,8 +212,7 @@ template cl character_total_hit && was_eof && ( layout_.interlace_mode_ == InterlaceMode::Off || - !(bus_state_.field_count&1) || - extra_scanline_ + !(bus_state_.field_count&1) ); // @@ -451,7 +450,6 @@ template cl bool eof_latched_ = false; bool eom_latched_ = false; - bool extra_scanline_ = false; uint16_t next_row_address_ = 0; bool odd_field_ = false; };