mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-21 21:33:54 +00:00
Eliminate extra-scanline flag.
This commit is contained in:
parent
ae436f7a51
commit
0d71724598
@ -212,8 +212,7 @@ template <class BusHandlerT, Personality personality, CursorType cursor_type> 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 <class BusHandlerT, Personality personality, CursorType cursor_type> cl
|
||||
|
||||
bool eof_latched_ = false;
|
||||
bool eom_latched_ = false;
|
||||
bool extra_scanline_ = false;
|
||||
uint16_t next_row_address_ = 0;
|
||||
bool odd_field_ = false;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user