1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-25 11:17:26 +00:00

Make centre row the thick one.

This commit is contained in:
Thomas Harte
2025-10-02 20:35:53 -04:00
parent fcf648bbb2
commit e5e0cbfc53
+1 -1
View File
@@ -305,7 +305,7 @@ void SAA5050Serialiser::load_pixels(const uint8_t c) {
pixels =
((c & 1) ? 0b111'000 : 0) |
((c & 2) ? 0b000'111 : 0);
} else if(line_ < 12) {
} else if(line_ < 14) {
pixels =
((c & 4) ? 0b111'000 : 0) |
((c & 8) ? 0b000'111 : 0);