[v0.94] Fix compilation issues

This commit is contained in:
Dr-Noob
2020-12-05 11:56:40 +01:00
parent f68c81395b
commit 5b9a9e90d0
3 changed files with 8 additions and 8 deletions

View File

@@ -326,7 +326,7 @@ struct ascii* set_ascii(VENDOR vendor, STYLE style, struct colors* cs) {
#endif
for(int i=0; i < NUMBER_OF_LINES; i++)
strncpy(art->art[i], tmp + i*LINE_SIZE, LINE_SIZE);
memcpy(art->art[i], tmp + i*LINE_SIZE, LINE_SIZE);
return art;
}