(svn r16935) -Codechange: Improve wording of .lng file error message (found by cmoiromain).

This commit is contained in:
alberth 2009-07-24 09:14:36 +00:00
parent 803cf87885
commit feb83756a2
1 changed files with 1 additions and 4 deletions

View File

@ -142,10 +142,7 @@ static char *GetStringWithArgs(char *buffr, uint string, int64 *argv, const char
}
if (index >= _langtab_num[tab]) {
error(
"String 0x%X is invalid. "
"Probably because an old version of the .lng file.\n", string
);
error("String 0x%X is invalid. You are probably using an old version of the .lng file.\n", string);
}
return FormatString(buffr, GetStringPtr(GB(string, 0, 16)), argv, GB(string, 24, 8), last);