mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-15 02:57:38 +01:00
Relax check_sample_rate util to allow 300hz (Wwise lowest)
This commit is contained in:
parent
a468898855
commit
b6d89a0f47
@ -3,7 +3,7 @@
|
||||
#include "streamtypes.h"
|
||||
|
||||
int check_sample_rate(int32_t sr) {
|
||||
return !(sr<1000 || sr>96000);
|
||||
return !(sr<300 || sr>96000);
|
||||
}
|
||||
|
||||
const char * filename_extension(const char * filename) {
|
||||
|
Loading…
Reference in New Issue
Block a user