(svn r17929) -Fix (r2391): STR_NULL does not seem very useful as file save error summary.

This commit is contained in:
alberth 2009-10-31 20:09:37 +00:00
parent 44aacfc59f
commit 2d5aebb1f1
1 changed files with 1 additions and 1 deletions

View File

@ -1697,7 +1697,7 @@ const char *GetSaveLoadErrorString()
static void SaveFileError()
{
SetDParamStr(0, GetSaveLoadErrorString());
ShowErrorMessage(STR_NULL, STR_JUST_RAW_STRING, 0, 0);
ShowErrorMessage(STR_JUST_RAW_STRING, INVALID_STRING_ID, 0, 0);
SaveFileDone();
}