1
0
Fork 0

Fill DTA for FCB search results more like real DOS. Fixes bug #436.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3972
This commit is contained in:
ripsaw8080 2016-03-23 21:24:41 +00:00
parent f59ebfd303
commit 58c495998a

View file

@ -389,8 +389,8 @@ bool DOS_FCB::Extended(void) {
void DOS_FCB::Create(bool _extended) {
Bitu fill;
if (_extended) fill=36+7;
else fill=36;
if (_extended) fill=33+7;
else fill=33;
Bitu i;
for (i=0;i<fill;i++) mem_writeb(real_pt+i,0);
pt=real_pt;