1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-22 12:33:29 +00:00

Eliminate extra-scanline flag.

This commit is contained in:
Thomas Harte 2024-10-09 11:45:32 -04:00
parent ae436f7a51
commit 0d71724598

View File

@ -212,8 +212,7 @@ template <class BusHandlerT, Personality personality, CursorType cursor_type> cl
character_total_hit && was_eof && character_total_hit && was_eof &&
( (
layout_.interlace_mode_ == InterlaceMode::Off || layout_.interlace_mode_ == InterlaceMode::Off ||
!(bus_state_.field_count&1) || !(bus_state_.field_count&1)
extra_scanline_
); );
// //
@ -451,7 +450,6 @@ template <class BusHandlerT, Personality personality, CursorType cursor_type> cl
bool eof_latched_ = false; bool eof_latched_ = false;
bool eom_latched_ = false; bool eom_latched_ = false;
bool extra_scanline_ = false;
uint16_t next_row_address_ = 0; uint16_t next_row_address_ = 0;
bool odd_field_ = false; bool odd_field_ = false;
}; };