diff options
author | Simon Howard | 2009-03-04 22:07:27 +0000 |
---|---|---|
committer | Simon Howard | 2009-03-04 22:07:27 +0000 |
commit | 997d2ee86ef77422ce7ddd08859bd5a4aef66145 (patch) | |
tree | 34720ea5a62b38ee01d82cab2b5ab328612262da /src/s_sound.c | |
parent | 4422bbf9815ec42402d0235845a8fd33afd792b2 (diff) | |
download | chocolate-doom-997d2ee86ef77422ce7ddd08859bd5a4aef66145.tar.gz chocolate-doom-997d2ee86ef77422ce7ddd08859bd5a4aef66145.tar.bz2 chocolate-doom-997d2ee86ef77422ce7ddd08859bd5a4aef66145.zip |
Add initial stub for OPL backend.
Subversion-branch: /branches/opl-branch
Subversion-revision: 1447
Diffstat (limited to 'src/s_sound.c')
-rw-r--r-- | src/s_sound.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/s_sound.c b/src/s_sound.c index 70fa75f3..f038e9cd 100644 --- a/src/s_sound.c +++ b/src/s_sound.c @@ -136,6 +136,7 @@ int snd_sfxdevice = SNDDEVICE_SB; extern sound_module_t sound_sdl_module; extern sound_module_t sound_pcsound_module; extern music_module_t music_sdl_module; +extern music_module_t music_opl_module; // Compiled-in sound modules: @@ -154,6 +155,7 @@ static music_module_t *music_modules[] = { #ifdef FEATURE_SOUND &music_sdl_module, + &music_opl_module, #endif NULL, }; |