summaryrefslogtreecommitdiff
path: root/strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings.c')
-rw-r--r--strings.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/strings.c b/strings.c
index 71e330bfe..7da26efdc 100644
--- a/strings.c
+++ b/strings.c
@@ -198,15 +198,15 @@ static char *GetStringWithArgs(char *buffr, uint string, const int32 *argv, cons
break;
case 28:
- GetGRFString(buff, index, last);
+ GetGRFString(buff, index, lastof(buff));
return FormatString(buffr, buff, argv, 0, last);
case 29:
- GetGRFString(buff, index + 0x800, last);
+ GetGRFString(buff, index + 0x800, lastof(buff));
return FormatString(buffr, buff, argv, 0, last);
case 30:
- GetGRFString(buff, index + 0x1000, last);
+ GetGRFString(buff, index + 0x1000, lastof(buff));
return FormatString(buffr, buff, argv, 0, last);
case 31: