From 81e5b16d7178f0ee5584201cb2f6c8e36742354f Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 13 Nov 2005 13:43:55 +0000 Subject: (svn r3172) static, const --- strings.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'strings.c') diff --git a/strings.c b/strings.c index d732c9ea1..77c891efe 100644 --- a/strings.c +++ b/strings.c @@ -702,10 +702,9 @@ static char *FormatString(char *buff, const char *str, const int32 *argv, uint c } break; case 0x9A: { // {STATION} - Station *st; + const Station* st = GetStation(GetInt32(&argv)); int32 temp[2]; - st = GetStation(GetInt32(&argv)); if (st->xy == 0) { // station doesn't exist anymore buff = GetStringWithArgs(buff, STR_UNKNOWN_DESTINATION, NULL); break; @@ -716,10 +715,10 @@ static char *FormatString(char *buff, const char *str, const int32 *argv, uint c break; } case 0x9B: { // {TOWN} - Town *t; + const Town* t = GetTown(GetInt32(&argv)); int32 temp[1]; - t = GetTown(GetInt32(&argv)); assert(t->xy); + temp[0] = t->townnameparts; buff = GetStringWithArgs(buff, t->townnametype, temp); break; -- cgit v1.2.3-54-g00ecf