From 0e2f35e4a537d8aef54dde50ab65952be4f4eb47 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Tue, 7 Apr 2026 21:52:09 +0300 Subject: [PATCH] REZERO UNIT should stop CD audio play --- blkdev.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/blkdev.cpp b/blkdev.cpp index a9507143..8cd0d936 100644 --- a/blkdev.cpp +++ b/blkdev.cpp @@ -1656,6 +1656,9 @@ int scsi_cd_emulate (int unitnum, uae_u8 *cmdbuf, int scsi_cmd_len, } break; case 0x01: /* REZERO UNIT */ + if (nodisk(&di)) + goto nodisk; + stopplay(unitnum); scsi_len = 0; break; case 0x1d: /* SEND DIAGNOSTICS */ -- 2.47.3