(svn r2641) Fix: [strings] forgot to increase argv pointer twice for {CARGO}

This commit is contained in:
ludde 2005-07-19 21:14:00 +00:00
parent 34253195a2
commit 7a553d8439
1 changed files with 1 additions and 1 deletions

View File

@ -679,7 +679,7 @@ static char *FormatString(char *buff, const char *str, const int32 *argv, uint c
// 8bit - cargo type
// 16-bit - cargo count
StringID cargo_str = _cargoc.names_long[GetInt32(&argv)];
buff = GetStringWithArgs(buff, cargo_str, argv);
buff = GetStringWithArgs(buff, cargo_str, argv++);
break;
}