foxygit / doom Log in
commit ad113dcdd09405e81214e0f477dc44d49f6bcac8
Author:     Simon Howard <fraggle@soulsphere.org>
AuthorDate: Sun Jun 5 15:17:47 2016 -0400
Commit:     Simon Howard <fraggle@soulsphere.org>
CommitDate: Sun Jun 5 15:17:47 2016 -0400

    setup: Use SNDDEVICE_SB for OPL, not ..._ADLIB.

    We use SNDDEVICE_SB as the default everywhere else, so we need to be
    consistent.
---
 src/setup/sound.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/setup/sound.c b/src/setup/sound.c
index 8e5bebd5..426fd7de 100644
--- a/src/setup/sound.c
+++ b/src/setup/sound.c
@@ -152,8 +152,8 @@ void ConfigSound(void)
         TXT_NewRadioButton("Disabled", &snd_musicdevice, SNDDEVICE_NONE),

         TXT_NewRadioButton("OPL (Adlib/Soundblaster)", &snd_musicdevice,
-                           SNDDEVICE_ADLIB),
-        TXT_NewConditional(&snd_musicdevice, SNDDEVICE_ADLIB,
+                           SNDDEVICE_SB),
+        TXT_NewConditional(&snd_musicdevice, SNDDEVICE_SB,
             TXT_NewHorizBox(
                 TXT_NewStrut(4, 0),
                 TXT_NewLabel("Chip type: "),