mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-22 12:33:29 +00:00
This should be the other way around. I want whichever is later.
This commit is contained in:
parent
2f0c923c29
commit
82f392fada
@ -534,7 +534,7 @@ void TIA::output_for_cycles(int number_of_cycles)
|
||||
|
||||
void TIA::output_pixels(int start, int end)
|
||||
{
|
||||
start = std::min(start, pixels_start_location_);
|
||||
start = std::max(start, pixels_start_location_);
|
||||
int target_position = start - pixels_start_location_;
|
||||
|
||||
if(start < first_pixel_cycle+8 && horizontal_blank_extend_)
|
||||
|
Loading…
Reference in New Issue
Block a user