Skip to content

Commit 982d7ba

Browse files
authored
Merge pull request #5472 from letscontrolit/bugfix/5469_OLED_half_width
[OLED] Fix: 128×64 shows only left half in display_A builds (#5469)
2 parents 71d71fb + 430c727 commit 982d7ba

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/src/PluginStructs/P023_data_struct.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,6 @@ void P023_data_struct::sendStrXY(const char *string, int X, int Y) {
435435
for (i = 0; i < char_width && currentPixels < maxPixels; ++i,++currentPixels) { // Prevent display overflow on the pixel-level
436436
sendChar((i == 0 || i > 5) ? 0x00 : pgm_read_byte(baddr + i - 1));
437437
}
438-
currentPixels += char_width;
439438
string++;
440439
}
441440
}

0 commit comments

Comments
 (0)