diff options
author | khokh2001 | 2015-03-09 16:32:08 +0900 |
---|---|---|
committer | khokh2001 | 2015-03-09 16:32:08 +0900 |
commit | e62bc4cee05ddb2d2fcf0f04aee90c9158188ca6 (patch) | |
tree | c0d25af6f9de6c8a032f6a84282b3573cabad2f2 /src/hexen | |
parent | 70e39d13808d9a6de004bde9570a2db001cc95e4 (diff) | |
download | chocolate-doom-e62bc4cee05ddb2d2fcf0f04aee90c9158188ca6.tar.gz chocolate-doom-e62bc4cee05ddb2d2fcf0f04aee90c9158188ca6.tar.bz2 chocolate-doom-e62bc4cee05ddb2d2fcf0f04aee90c9158188ca6.zip |
Hexen and Heretic use older DMX. Since OPL Voice Allocating algorithm differ. This commit adds old DMX's voice allocating alogrithm for Hexen and Heretic.
Diffstat (limited to 'src/hexen')
-rw-r--r-- | src/hexen/s_sound.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hexen/s_sound.c b/src/hexen/s_sound.c index b5af53c7..60666566 100644 --- a/src/hexen/s_sound.c +++ b/src/hexen/s_sound.c @@ -787,6 +787,7 @@ void S_UpdateSounds(mobj_t * listener) void S_Init(void) { + I_SetOPLDriverVer(opl_v_old); SoundCurve = W_CacheLumpName("SNDCURVE", PU_STATIC); // SoundCurve = Z_Malloc(MAX_SND_DIST, PU_STATIC, NULL); |