Fix strncpy bugs in fusée, etc.

This commit is contained in:
TuxSH
2018-05-15 01:18:05 +02:00
parent cae107557d
commit 172a2b679c
6 changed files with 8 additions and 6 deletions

View File

@@ -555,7 +555,7 @@ static void console_scrollup (void)
CONFIG_VIDEO_VISIBLE_ROWS - video_logo_height - VIDEO_FONT_HEIGHT /* frame height */
);
#else
memcpy(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
memmove(CONSOLE_ROW_FIRST, CONSOLE_ROW_SECOND,
CONSOLE_SCROLL_SIZE);
#endif