From b2b03b172fb2183b07091535233e1ea0f8da6e9a Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Sun, 5 Sep 2004 19:00:52 +0000 Subject: [PATCH] LOG_MSG=> LOG Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1941 --- src/ints/bios_disk.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ints/bios_disk.cpp b/src/ints/bios_disk.cpp index d22cb2aa..892701d0 100644 --- a/src/ints/bios_disk.cpp +++ b/src/ints/bios_disk.cpp @@ -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); }