From f2802c63e951e8bf15527d286455def05affeca1 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 22 Oct 2023 06:04:49 +0200 Subject: [PATCH] CT1745 mixer register 10h read. --- src/sound/snd_sb.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sound/snd_sb.c b/src/sound/snd_sb.c index 40946334e..fd0161cd1 100644 --- a/src/sound/snd_sb.c +++ b/src/sound/snd_sb.c @@ -1023,6 +1023,9 @@ sb_ct1745_mixer_read(uint16_t addr, void *priv) case 0x0e: ret = 0x02; break; + case 0x10: /* Read by Future Crew. */ + ret = 0xff; + break; case 0x22: ret = ((mixer->regs[0x31] >> 4) & 0x0f) | (mixer->regs[0x30] & 0xf0); break;