Refinements of an earlier fix. Thanks ripsaw
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3821
This commit is contained in:
parent
28fe87edce
commit
15c1bb607f
1 changed files with 2 additions and 2 deletions
|
@ -334,14 +334,14 @@ static Bitu INT13_DiskHandler(void) {
|
|||
if ((machine==MCH_CGA) || (machine==MCH_PCJR)) {
|
||||
/* those bioses call floppy drive reset for invalid drive values */
|
||||
if (((imageDiskList[0]) && (imageDiskList[0]->active)) || ((imageDiskList[1]) && (imageDiskList[1]->active))) {
|
||||
if (reg_dl<0x80) reg_ip++;
|
||||
if (machine!=MCH_PCJR && reg_dl<0x80) reg_ip++;
|
||||
last_status = 0x00;
|
||||
CALLBACK_SCF(false);
|
||||
}
|
||||
}
|
||||
return CBRET_NONE;
|
||||
}
|
||||
if (reg_dl<0x80) reg_ip++;
|
||||
if (machine!=MCH_PCJR && reg_dl<0x80) reg_ip++;
|
||||
last_status = 0x00;
|
||||
CALLBACK_SCF(false);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue