1
0
Fork 0

chanded fcb-parsename to update si in stead of di

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@464
This commit is contained in:
Peter Veenstra 2002-10-30 18:47:40 +00:00
parent 48750dfa8f
commit 25692864a9

View file

@ -253,7 +253,7 @@ static Bitu DOS_21Handler(void) {
char string[1024];
MEM_StrCopy(SegPhys(ds)+reg_si,string,1024);
reg_al=FCB_Parsename(SegValue(es),reg_di,reg_al ,string, &difference);
reg_di+=difference;
reg_si+=difference;
}
LOG_DEBUG("DOS:29:FCB Parse Filename, result:al=%d",reg_al);
break;