mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-26 09:29:45 +00:00
Resolves out-of-bounds initial condition whenever this loop began with start_line = 2047.
This, I believe, was the remaining cause of screen flashes.
This commit is contained in:
parent
a6e61ef83b
commit
7bb90c78d9
@ -576,7 +576,7 @@ void ScanTarget::draw(bool synchronous, int output_width, int output_height) {
|
|||||||
// Divide spans by which frame they're in.
|
// Divide spans by which frame they're in.
|
||||||
uint16_t start_line = read_pointers.line;
|
uint16_t start_line = read_pointers.line;
|
||||||
while(new_lines) {
|
while(new_lines) {
|
||||||
uint16_t end_line = start_line+1;
|
uint16_t end_line = (start_line + 1) % LineBufferHeight;
|
||||||
|
|
||||||
// Find the limit of spans to draw in this cycle.
|
// Find the limit of spans to draw in this cycle.
|
||||||
size_t lines = 1;
|
size_t lines = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user