1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Eliminates various blank lines.

This commit is contained in:
Thomas Harte
2018-07-28 10:52:34 -04:00
parent 3e35109d63
commit 3c33ccd730
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -404,7 +404,7 @@ unsigned int VideoOutput::get_cycles_until_next_ram_availability(int from_time)
if(current_line >= output_position_line) {
// Get the number of lines since then if still in the same frame.
int lines_since_output_position = current_line - output_position_line;
// Therefore get the character row at the proposed time, modulo 10.
implied_row = (current_character_row_ + lines_since_output_position) % 10;
} else {