1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-16 18:30:32 +00:00

Corrects super high-res aspect ratio and placement.

This commit is contained in:
Thomas Harte 2020-12-02 20:47:26 -05:00
parent 24fcb0c24b
commit 3c6f09a898

View File

@ -330,7 +330,7 @@ void Video::output_row(int row, int start, int end) {
extra_border_length = 14;
break;
case GraphicsMode::SuperHighRes:
extra_border_length = (line_control_ & 0x80) ? 4 : 2;
extra_border_length = (line_control_ & 0x80) ? 16 : 8;
break;
default: // Unreachable.
extra_border_length = 0;