diff options
Diffstat (limited to 'engines/gob/draw_v1.cpp')
-rw-r--r-- | engines/gob/draw_v1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/draw_v1.cpp b/engines/gob/draw_v1.cpp index 6496229282..d130f424c2 100644 --- a/engines/gob/draw_v1.cpp +++ b/engines/gob/draw_v1.cpp @@ -24,11 +24,11 @@ */ #include "common/endian.h" +#include "common/str.h" #include "graphics/cursorman.h" #include "gob/gob.h" #include "gob/draw.h" -#include "gob/helper.h" #include "gob/global.h" #include "gob/util.h" #include "gob/game.h" @@ -258,7 +258,7 @@ void Draw_v1::printTotText(int16 id) { } else if (cmd == 1) { val = READ_LE_UINT16(ptrEnd + 18) * 4; - strncpy0(buf, GET_VARO_STR(val), 19); + Common::strlcpy(buf, GET_VARO_STR(val), 20); } else { val = READ_LE_UINT16(ptrEnd + 18) * 4; |