]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
Allow sample rates up to 768KHz (from 192KHz)
authorToni Wilen <twilen@winuae.net>
Sat, 20 Oct 2018 11:56:49 +0000 (14:56 +0300)
committerToni Wilen <twilen@winuae.net>
Sat, 20 Oct 2018 11:56:49 +0000 (14:56 +0300)
od-win32/win32gui.cpp

index 1410c7f2b94b145fc18f9bef3861dbbbb3072285..32f5f4f07965ef7e5846a5ddfe60ded22ff07aeb 100644 (file)
@@ -12800,8 +12800,8 @@ static void values_from_sounddlg (HWND hDlg)
        }
        if (workprefs.sound_freq < 8000)
                workprefs.sound_freq = 8000;
-       if (workprefs.sound_freq > 192000)
-               workprefs.sound_freq = 192000;
+       if (workprefs.sound_freq > 768000)
+               workprefs.sound_freq = 768000;
 
        workprefs.produce_sound = (ischecked (hDlg, IDC_SOUND0) ? 0
                : ischecked (hDlg, IDC_SOUND1) ? 1 : 3);