From 1d57246ee84d739efb57cf9aa68255b43f42947d Mon Sep 17 00:00:00 2001 From: Ompronce <88358700+Ompronce@users.noreply.github.com> Date: Tue, 3 Aug 2021 02:46:09 -0400 Subject: [PATCH 1/2] Added correct AWE64 Gold RAM amounts Corrected AWE64 Gold RAM amounts based on formulas seen here - https://www.vogons.org/viewtopic.php?p=988235#p988235 --- src/sound/snd_sb.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/sound/snd_sb.c b/src/sound/snd_sb.c index 3d8e51806..f7914a46d 100644 --- a/src/sound/snd_sb.c +++ b/src/sound/snd_sb.c @@ -2560,21 +2560,18 @@ static const device_config_t sb_awe64_gold_config[] = { "onboard_ram", "Onboard RAM", CONFIG_SELECTION, "", 4096, "", { 0 }, { - { - "None", 0 - }, - { - "512 KB", 512 - }, - { - "2 MB", 2048 - }, { "4 MB", 4096 }, { "8 MB", 8192 }, + { + "12 MB", 12288 + }, + { + "16 MB", 16384 + }, { "28 MB", 28*1024 }, From d2d5906e2fb9accdd08bf55569a8d97437ae7a40 Mon Sep 17 00:00:00 2001 From: Ompronce <88358700+Ompronce@users.noreply.github.com> Date: Tue, 3 Aug 2021 02:57:54 -0400 Subject: [PATCH 2/2] Added correct SB 32 PnP RAM amounts Corrected Sound Blaster 32 PnP RAM amounts based on formulas seen here - https://www.vogons.org/viewtopic.php?p=988235#p988235 --- src/sound/snd_sb.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/sound/snd_sb.c b/src/sound/snd_sb.c index f7914a46d..7361d90cd 100644 --- a/src/sound/snd_sb.c +++ b/src/sound/snd_sb.c @@ -2341,9 +2341,6 @@ static const device_config_t sb_32_pnp_config[] = { "None", 0 }, - { - "512 KB", 512 - }, { "2 MB", 2048 },