(svn r22271) -Fix (r22258) [FS#4562]: cargo en-route display in station was broken

This commit is contained in:
yexo 2011-03-22 23:59:55 +00:00
parent fd74c0f9dc
commit dfd2899a88
1 changed files with 3 additions and 3 deletions

View File

@ -782,11 +782,11 @@ static char *FormatString(char *buff, const char *str_arg, StringParameters *arg
break;
}
default:
/* Skip a single entry */
args->GetInt64();
default: {
StringParameters tmp_params(*args, 1);
buff = GetStringWithArgs(buff, cargo_str, args, last);
break;
}
}
break;
}