1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-12 15:31:09 +00:00

Merge pull request #574 from TomHarte/MulticolourMode

Fixes broken implementation of 9918 multicolour mode.
This commit is contained in:
Thomas Harte 2018-10-24 22:41:18 -04:00 committed by GitHub
commit 9621ba59ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -736,7 +736,6 @@ void Base::draw_tms_character(int start, int end) {
(line_buffer.patterns[c >> 3][0] >> (((c & 4)^4))) & 15
];
}
pixel_target_ += pixels_left;
} else {
const int shift = start & 7;
int byte_column = start >> 3;