(svn r3516) Fix embarrassing bug in r3514

This commit is contained in:
tron
2006-02-01 19:53:17 +00:00
parent 272a27b795
commit 21fb5b5150
2 changed files with 4 additions and 4 deletions

View File

@@ -500,8 +500,8 @@ static char *FormatString(char *buff, const char *str, const int32 *argv, uint c
break;
case 0x81: // {STRINL}
buff = GetStringWithArgs(buff, READ_LE_UINT16(str), argv);
str += 2;
buff = GetStringWithArgs(buff, READ_LE_UINT16(str-2), argv);
break;
case 0x82: // {DATE_LONG}
buff = FormatYmdString(buff, GetInt32(&argv));