mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 07:41:58 +00:00
MADS: Don't use unsafe strcat and strcpy
This commit is contained in:
parent
700a965361
commit
295253abf3
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user