This commit is contained in:
Daveo 2001-04-19 15:12:21 +00:00
parent d33f59257f
commit aaaed92c9e
28 changed files with 322 additions and 188 deletions

View file

@ -65,7 +65,7 @@ FILE *File;
int Size;
char *Script;
File=fopen(Filename,"rt");
if (!File) return;
if (!File) {printf("%s Not Found\n",Filename); return;}
fseek(File,0,SEEK_END);
Size=ftell(File);
fseek(File,0,SEEK_SET);