From ae61303f86d8cbb729c46c2005f155f30cef4839 Mon Sep 17 00:00:00 2001 From: kub Date: Wed, 4 Nov 2020 18:18:24 +0100 Subject: [PATCH] mcd, fix SEEK status reporting --- pico/cd/cdd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pico/cd/cdd.c b/pico/cd/cdd.c index 0ef9a126..66f370d0 100644 --- a/pico/cd/cdd.c +++ b/pico/cd/cdd.c @@ -1111,7 +1111,7 @@ void cdd_process(void) cdd.status = CD_PLAY; /* return track index in RS2-RS3 */ - set_reg16(0x38, (CD_SEEK << 8) | 0x02); + set_reg16(0x38, (CD_SEEK << 8) | 0x0f); set_reg16(0x3a, 0x0000); set_reg16(0x3c, 0x0000); set_reg16(0x3e, 0x0000); -- 2.39.2