From f2d61de09fd05306c83334f97043e4e4a7cc6a94 Mon Sep 17 00:00:00 2001 From: Sergiy Dvodnenko Date: Thu, 25 Sep 2025 09:21:12 +0300 Subject: [PATCH] Saturn: fix the status of Play command (Suchie-Pie Doki Doki Nightmare) (#1038) --- support/saturn/saturncdd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/saturn/saturncdd.cpp b/support/saturn/saturncdd.cpp index d707cd3..589402a 100644 --- a/support/saturn/saturncdd.cpp +++ b/support/saturn/saturncdd.cpp @@ -869,7 +869,7 @@ void satcdd_t::Process(uint8_t* time_mode) { stat[0] = SATURN_STAT_DATA; stat[1] = q | 0x01; - stat[2] = this->lba < this->toc.end ? BCD(this->track + 1) : BCD(this->toc.last); + stat[2] = this->lba < this->toc.end ? BCD(this->track + 1) : 0xAA; stat[3] = this->lba < 0 ? 0x00 : BCD(this->index); stat[4] = BCD(msf.m); stat[5] = BCD(msf.s);