From e411652b2788ef27b7b4b3d7721f32fecf530776 Mon Sep 17 00:00:00 2001 From: SarahW Date: Sat, 7 Apr 2018 14:03:34 +0100 Subject: [PATCH] Don't kill the emulator on an unknown ZIP drive SCSI/ATAPI command. --- src/scsi_zip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scsi_zip.c b/src/scsi_zip.c index 38067d7..91956e2 100644 --- a/src/scsi_zip.c +++ b/src/scsi_zip.c @@ -1053,7 +1053,7 @@ static int scsi_zip_command(uint8_t *cdb, void *p) break; default: - fatal("Bad SCSI ZIP command %02x\n", cdb[0]); + pclog("Bad SCSI ZIP command %02x\n", cdb[0]); scsi_zip_illegal(data); bus_state = BUS_CD | BUS_IO; break;