MADS: Don't use unsafe strcat and strcpy

This commit is contained in:
Le Philousophe 2022-09-25 18:58:59 +02:00 committed by Eugene Sandulenko
parent 700a965361
commit 295253abf3

View File

@ -310,7 +310,7 @@ void TextView::processText() {
// Delete the @ character and shift back the remainder of the string
char *p = centerP + 1;
if (*p == ' ') ++p;
strcpy(centerP, p);
Common::strcpy_s(centerP, 80 - (centerP - _currentLine), p);
} else {
int lineWidth = _font->getWidth(_currentLine);