1
0
Fork 0

LOG_MSG=> LOG

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1941
This commit is contained in:
Peter Veenstra 2004-09-05 19:00:52 +00:00
parent fa3d6daf04
commit b2b03b172f

View file

@ -238,19 +238,19 @@ static Bitu GetDosDriveNumber(Bitu biosNum) {
static bool driveInactive(Bitu driveNum) {
if(driveNum>=(2 + MAX_HDD_IMAGES)) {
LOG_MSG("Disk %d non-existant", driveNum);
LOG(LOG_BIOS,LOG_ERROR)("Disk %d non-existant", driveNum);
last_status = 0x01;
CALLBACK_SCF(true);
return true;
}
if(imageDiskList[driveNum] == NULL) {
LOG_MSG("Disk %d not active", driveNum);
LOG(LOG_BIOS,LOG_ERROR)("Disk %d not active", driveNum);
last_status = 0x01;
CALLBACK_SCF(true);
return true;
}
if(!imageDiskList[driveNum]->active) {
LOG_MSG("Disk %d not active", driveNum);
LOG(LOG_BIOS,LOG_ERROR)("Disk %d not active", driveNum);
last_status = 0x01;
CALLBACK_SCF(true);
return true;
@ -391,7 +391,7 @@ static Bitu INT13_DiskHandler(void) {
CALLBACK_SCF(false);
break;
default:
LOG_MSG("INT13: Function %x called on drive %x (dos drive %d)", reg_ah, reg_dl, drivenum);
LOG(LOG_BIOS,LOG_ERROR)("INT13: Function %x called on drive %x (dos drive %d)", reg_ah, reg_dl, drivenum);
reg_ah=0xff;
CALLBACK_SCF(true);
}