Skip to content

Commit

Permalink
cdrom: accept more channel bits
Browse files Browse the repository at this point in the history
Although it contradicts nocash docs, Spyro 2 (PAL) uses 0x21.
Should only 0xff be rejected?
  • Loading branch information
notaz committed Apr 14, 2024
1 parent 642638a commit df4bcb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libpcsxcore/cdrom.c
Original file line number Diff line number Diff line change
Expand Up @@ -1399,7 +1399,7 @@ static void cdrReadInterrupt(void)
subhdr->file, subhdr->chan, cdr.CurFile, cdr.CurChannel, cdr.FilterFile, cdr.FilterChannel);
if ((cdr.Mode & MODE_SF) && (subhdr->file != cdr.FilterFile || subhdr->chan != cdr.FilterChannel))
break;
if (subhdr->chan & 0xe0) { // ?
if (subhdr->chan & 0x80) { // ?
if (subhdr->chan != 0xff)
log_unhandled("adpcm %d:%d\n", subhdr->file, subhdr->chan);
break;
Expand Down

0 comments on commit df4bcb0

Please sign in to comment.