If a file is not present, it's not an error. This means you're using the

1.2MB floppy image.
This commit is contained in:
Jordan K. Hubbard 1994-11-06 11:09:18 +00:00
parent 1e8ee278b6
commit 1d317df96c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4209

View File

@ -173,7 +173,7 @@ ShowFile(char *filename, char *header)
{
char buf[256];
if (access(filename, R_OK)) {
sprintf(buf, "Odd, I thought I had a file called %s around here somewhere,\nbut I can't seem to find it now that I need it. Sorry about that!", filename);
sprintf(buf, "The %s file is not provided on the 1.2MB floppy image.", filename);
dialog_msgbox("Sorry!", buf, 6, 75, 1);
return;
}