diff options
author | Simon Howard | 2009-10-17 22:36:15 +0000 |
---|---|---|
committer | Simon Howard | 2009-10-17 22:36:15 +0000 |
commit | e30325c40f6ea482862745db0f4555e513f2952e (patch) | |
tree | 74bf8304a8b9d5edb2f303d1673a03785e6e7bfc /src | |
parent | 58f71d21b021bddcb24ac2b2b9736bf821221bd1 (diff) | |
download | chocolate-doom-e30325c40f6ea482862745db0f4555e513f2952e.tar.gz chocolate-doom-e30325c40f6ea482862745db0f4555e513f2952e.tar.bz2 chocolate-doom-e30325c40f6ea482862745db0f4555e513f2952e.zip |
Add OPL library API function to set software emulation sample rate, and
set from snd_samplerate in the configuration file.
Subversion-branch: /branches/opl-branch
Subversion-revision: 1723
Diffstat (limited to 'src')
-rw-r--r-- | src/i_oplmusic.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/i_oplmusic.c b/src/i_oplmusic.c index d32a163e..474877d4 100644 --- a/src/i_oplmusic.c +++ b/src/i_oplmusic.c @@ -1372,6 +1372,8 @@ static void I_OPL_ShutdownMusic(void) static boolean I_OPL_InitMusic(void) { + OPL_SetSampleRate(snd_samplerate); + if (!OPL_Init(opl_io_port)) { printf("Dude. The Adlib isn't responding.\n"); |