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:
parent
f59ebfd303
commit
58c495998a
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue