[SC64][SW] Disable auto new line in bootloader display printing functions

This commit is contained in:
Mateusz Faderewski 2025-03-09 21:14:54 +01:00
parent a3d4082384
commit 30fb3d0ea6

View File

@ -116,8 +116,8 @@ static void display_draw_character (char c) {
}
if ((char_x + FONT_WIDTH) > (SCREEN_WIDTH - BORDER_WIDTH)) {
char_x = BORDER_WIDTH;
char_y += FONT_HEIGHT + LINE_SPACING;
char_x -= FONT_WIDTH;
c = '\x7F';
}
if ((c < ' ') || (c > '~')) {