engine: soundlib: allowed resampling sounds with rate >44kHz

This commit is contained in:
SNMetamorph
2024-12-02 20:36:33 +03:00
committed by Alibek Omarov
parent e982b7911f
commit 86154f81aa
+1 -1
View File
@@ -158,7 +158,7 @@ wavdata_t *S_LoadSound( sfx_t *sfx )
Sound_Process( &sc, SOUND_11k, sc->width, sc->channels, SOUND_RESAMPLE );
else if( sc->rate > SOUND_11k && sc->rate < SOUND_22k ) // some bad sounds
Sound_Process( &sc, SOUND_22k, sc->width, sc->channels, SOUND_RESAMPLE );
else if( sc->rate > SOUND_22k && sc->rate < SOUND_44k ) // some bad sounds
else if( sc->rate > SOUND_22k && sc->rate != SOUND_44k ) // some bad sounds
Sound_Process( &sc, SOUND_44k, sc->width, sc->channels, SOUND_RESAMPLE );
sfx->cache = sc;