Skip to content
Snippets Groups Projects
Commit a2df449d authored by rswindell's avatar rswindell
Browse files

Uses fexistcase() to support areamgr.hlp in any case.

parent 86550041
No related branches found
No related tags found
No related merge requests found
......@@ -1183,7 +1183,7 @@ void command(char *instr,faddr_t addr)
strupr(instr);
if((p=strstr(instr,"HELP"))!=NULL) {
sprintf(str,"%sAREAMGR.HLP",scfg.exec_dir);
if(!fexist(str))
if(!fexistcase(str))
return;
if((stream=fnopen(&file,str,O_RDONLY))==NULL) {
printf("\7ERROR couldn't open %s.\n",str);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment