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
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ ShowFile(char *filename, char *header)
{ {
char buf[256]; char buf[256];
if (access(filename, R_OK)) { 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); dialog_msgbox("Sorry!", buf, 6, 75, 1);
return; return;
} }