1
0
Fork 0

fixed some fcb errors: fcb-open and fcb-create created.

fixed return values.
fixed wildcmp


Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@492
This commit is contained in:
Peter Veenstra 2002-11-11 18:40:43 +00:00
parent 055e02bb41
commit 764dc5c543
6 changed files with 18 additions and 7 deletions

View file

@ -63,6 +63,7 @@ bool WildFileCmp(const char * file, const char * wild)
r++;
}
checkext:
r=0;
while (r<3) {
if (wild_ext[r]=='*') return true;
if (wild_ext[r]!='?' && wild_ext[r]!=file_ext[r]) return false;