From 895c1cad668a6e56656beeef2c11a8296e5605c2 Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 3 May 2024 18:52:54 +0200 Subject: [PATCH] Actually add the Pro Audio Spectrum 16D to the sound cards table. --- src/include/86box/sound.h | 3 ++- src/sound/sound.c | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/include/86box/sound.h b/src/include/86box/sound.h index 9ede638e5..9896b5422 100644 --- a/src/include/86box/sound.h +++ b/src/include/86box/sound.h @@ -189,9 +189,10 @@ extern const device_t ps1snd_device; /* Innovation SSI-2001 */ extern const device_t ssi2001_device; -/* Pro Audio Spectrum 16 */ +/* Pro Audio Spectrum Plus, 16, and 16D */ extern const device_t pasplus_device; extern const device_t pas16_device; +extern const device_t pas16d_device; /* Tandy PSSJ */ extern const device_t pssj_device; diff --git a/src/sound/sound.c b/src/sound/sound.c index 0611909d8..f527cbc61 100644 --- a/src/sound/sound.c +++ b/src/sound/sound.c @@ -157,6 +157,7 @@ static const SOUND_CARD sound_cards[] = { { &ssi2001_device }, { &pasplus_device }, { &pas16_device }, + { &pas16d_device }, { &pssj_isa_device }, { &tndy_device }, { &wss_device },