mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 07:38:05 -04:00
sound, add FM filtering
This commit is contained in:
parent
21e0cd52e6
commit
68a950875c
13 changed files with 73 additions and 854 deletions
|
@ -275,7 +275,7 @@ static int custom_read(menu_entry *me, const char *var, const char *val)
|
|||
case MA_OPT_SOUND_QUALITY:
|
||||
if (strcasecmp(var, "Sound Quality") != 0) return 0;
|
||||
PicoIn.sndRate = strtoul(val, &tmp, 10);
|
||||
if (PicoIn.sndRate < 8000 || PicoIn.sndRate > 53267) {
|
||||
if (PicoIn.sndRate < 8000 || PicoIn.sndRate > 54000) {
|
||||
if (strncasecmp(tmp, "native", 6) == 0) {
|
||||
tmp += 6;
|
||||
PicoIn.sndRate = 53000;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue