From 706dd0f86c2453eadb44742ca62d6c5d690e9238 Mon Sep 17 00:00:00 2001 From: skidd13 Date: Sun, 2 Nov 2008 11:20:15 +0000 Subject: (svn r14555) -Codechange: replace ttd_strlcat and ttd_strlcpy with strecat and strecpy where direct conversion is possible --- src/gfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gfx.cpp') diff --git a/src/gfx.cpp b/src/gfx.cpp index 75189ab6a..9b613ceef 100644 --- a/src/gfx.cpp +++ b/src/gfx.cpp @@ -986,7 +986,7 @@ skip_cont:; int DoDrawStringTruncated(const char *str, int x, int y, uint16 color, uint maxw) { char buffer[DRAW_STRING_BUFFER]; - ttd_strlcpy(buffer, str, sizeof(buffer)); + strecpy(buffer, str, lastof(buffer)); TruncateString(buffer, maxw); return DoDrawString(buffer, x, y, color); } -- cgit v1.2.3-54-g00ecf